Skip to content

Commit

Permalink
Merge pull request buildout#304 from do3cc/no_python26
Browse files Browse the repository at this point in the history
No python 3.3 and newer versions of the other pythons
  • Loading branch information
reinout authored Jul 12, 2016
2 parents f25249d + 840df87 commit 4d4f428
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
env:
- PYTHON_VER=2.7
- PYTHON_VER=3.3
- PYTHON_VER=3.4
- PYTHON_VER=3.5

Expand Down
9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def read(*rnames):
'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',
Expand Down

0 comments on commit 4d4f428

Please sign in to comment.