Commit 4d4f428c authored by Reinout van Rees's avatar Reinout van Rees Committed by GitHub

Merge pull request #304 from do3cc/no_python26

No python 3.3 and newer versions of the other pythons
parents f25249d0 840df87a
language: python language: python
env: env:
- PYTHON_VER=2.7 - PYTHON_VER=2.7
- PYTHON_VER=3.3
- PYTHON_VER=3.4 - PYTHON_VER=3.4
- PYTHON_VER=3.5 - PYTHON_VER=3.5
......
...@@ -4,17 +4,14 @@ PYTHON_PATH = $(HERE)/pythons/$(PYTHON_VER) ...@@ -4,17 +4,14 @@ PYTHON_PATH = $(HERE)/pythons/$(PYTHON_VER)
PYTHON_BUILD_DIR = $(HERE)/python_builds PYTHON_BUILD_DIR = $(HERE)/python_builds
ifeq ($(PYTHON_VER),2.7) ifeq ($(PYTHON_VER),2.7)
PYTHON_MINOR ?= 2.7.3 PYTHON_MINOR ?= 2.7.11
endif
ifeq ($(PYTHON_VER),3.3)
PYTHON_MINOR ?= 3.3.0
endif endif
ifeq ($(PYTHON_VER),3.4) ifeq ($(PYTHON_VER),3.4)
PYTHON_MINOR ?= 3.4.2 PYTHON_MINOR ?= 3.4.4
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif endif
ifeq ($(PYTHON_VER),3.5) ifeq ($(PYTHON_VER),3.5)
PYTHON_MINOR ?= 3.5.0 PYTHON_MINOR ?= 3.5.2
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif endif
......
...@@ -101,7 +101,6 @@ setup( ...@@ -101,7 +101,6 @@ setup(
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Build Tools',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment