Commit e9190b0d authored by Jim Fulton's avatar Jim Fulton

Python 3.6 and other current versions

parent e129e187
...@@ -3,6 +3,7 @@ env: ...@@ -3,6 +3,7 @@ env:
- PYTHON_VER=2.7 - PYTHON_VER=2.7
- PYTHON_VER=3.4 - PYTHON_VER=3.4
- PYTHON_VER=3.5 - PYTHON_VER=3.5
- PYTHON_VER=3.6
sudo: false sudo: false
cache: cache:
......
...@@ -6,6 +6,8 @@ Change History ...@@ -6,6 +6,8 @@ Change History
- Updated to work with the latest setuptools. - Updated to work with the latest setuptools.
- Added Python 3.6 support
2.5.3 (2016-09-05) 2.5.3 (2016-09-05)
================== ==================
......
...@@ -4,14 +4,18 @@ PYTHON_PATH = $(HERE)/pythons/$(PYTHON_VER) ...@@ -4,14 +4,18 @@ 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.11 PYTHON_MINOR ?= 2.7.13
endif endif
ifeq ($(PYTHON_VER),3.4) ifeq ($(PYTHON_VER),3.4)
PYTHON_MINOR ?= 3.4.4 PYTHON_MINOR ?= 3.4.6
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.2 PYTHON_MINOR ?= 3.5.3
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif
ifeq ($(PYTHON_VER),3.6)
PYTHON_MINOR ?= 3.6.0
PYTHON_CONFIGURE_ARGS ?= --without-ensurepip PYTHON_CONFIGURE_ARGS ?= --without-ensurepip
endif endif
......
...@@ -103,6 +103,7 @@ setup( ...@@ -103,6 +103,7 @@ setup(
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
......
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