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
env:
- PYTHON_VER=2.7
- PYTHON_VER=3.3
- PYTHON_VER=3.4
- PYTHON_VER=3.5
......
......@@ -4,17 +4,14 @@ PYTHON_PATH = $(HERE)/pythons/$(PYTHON_VER)
PYTHON_BUILD_DIR = $(HERE)/python_builds
ifeq ($(PYTHON_VER),2.7)
PYTHON_MINOR ?= 2.7.3
endif
ifeq ($(PYTHON_VER),3.3)
PYTHON_MINOR ?= 3.3.0
PYTHON_MINOR ?= 2.7.11
endif
ifeq ($(PYTHON_VER),3.4)
PYTHON_MINOR ?= 3.4.2
PYTHON_MINOR ?= 3.4.4
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif
ifeq ($(PYTHON_VER),3.5)
PYTHON_MINOR ?= 3.5.0
PYTHON_MINOR ?= 3.5.2
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif
......
......@@ -101,7 +101,6 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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