Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
e9190b0d
Commit
e9190b0d
authored
7 years ago
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python 3.6 and other current versions
parent
e129e187
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
3 deletions
+11
-3
.travis.yml
.travis.yml
+1
-0
CHANGES.rst
CHANGES.rst
+2
-0
Makefile
Makefile
+7
-3
setup.py
setup.py
+1
-0
No files found.
.travis.yml
View file @
e9190b0d
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
CHANGES.rst
View file @
e9190b0d
...
@@ -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
)
==================
==================
...
...
This diff is collapsed.
Click to expand it.
Makefile
View file @
e9190b0d
...
@@ -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.1
1
PYTHON_MINOR
?=
2.7.1
3
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
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
e9190b0d
...
@@ -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'
,
],
],
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment