Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Kirill Smelkov
gevent
Commits
feab38df
Commit
feab38df
authored
Nov 28, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tested python versions on travis.
Note that the previous 3.6 beta has been removed. [skip appveyor]
parent
cd1defa6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
Makefile
Makefile
+9
-8
scripts/install.sh
scripts/install.sh
+4
-4
No files found.
Makefile
View file @
feab38df
...
@@ -106,10 +106,10 @@ BUILD_RUNTIMES?=$(PWD)/.runtimes
...
@@ -106,10 +106,10 @@ BUILD_RUNTIMES?=$(PWD)/.runtimes
PY278
=
$(BUILD_RUNTIMES)
/snakepit/python2.7.8
PY278
=
$(BUILD_RUNTIMES)
/snakepit/python2.7.8
PY27
=
$(BUILD_RUNTIMES)
/snakepit/python2.7
PY27
=
$(BUILD_RUNTIMES)
/snakepit/python2.7
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4
.5
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5
.2
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6
b4
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
4
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
6
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.3_5.5
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.3_5.5
TOOLS
=
$(BUILD_RUNTIMES)
/tools
TOOLS
=
$(BUILD_RUNTIMES)
/tools
...
@@ -146,6 +146,7 @@ $(PYPY3):
...
@@ -146,6 +146,7 @@ $(PYPY3):
PIP
?=
$(BUILD_RUNTIMES)
/versions/
$(PYTHON)
/bin/pip
PIP
?=
$(BUILD_RUNTIMES)
/versions/
$(PYTHON)
/bin/pip
develop
:
develop
:
ls
-l
$(BUILD_RUNTIMES)
/snakepit/
echo
pip is at
`
which
$(PIP)
`
echo
pip is at
`
which
$(PIP)
`
echo
python is at
`
which
$(PYTHON)
`
echo
python is at
`
which
$(PYTHON)
`
# First install a newer pip so that it can use the wheel cache
# First install a newer pip so that it can use the wheel cache
...
@@ -168,16 +169,16 @@ test-py278: $(PY278)
...
@@ -168,16 +169,16 @@ test-py278: $(PY278)
PYTHON
=
python2.7.8
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.8/bin:
$(PATH)
make develop toxtest
PYTHON
=
python2.7.8
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.8/bin:
$(PATH)
make develop toxtest
test-py34
:
$(PY34)
test-py34
:
$(PY34)
PYTHON
=
python3.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.4
/bin:
$(PATH)
make develop full
toxtest
PYTHON
=
python3.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.4
.5/bin:
$(PATH)
make develop
toxtest
test-py35
:
$(PY35)
test-py35
:
$(PY35)
PYTHON
=
python3.5
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5/bin:
$(PATH)
make develop fulltoxtest
PYTHON
=
python3.5
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5
.2
/bin:
$(PATH)
make develop fulltoxtest
test-py36
:
$(PY36)
test-py36
:
$(PY36)
PYTHON
=
python3.6
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6
/bin:
$(PATH)
make develop full
toxtest
PYTHON
=
python3.6
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6
b4/bin:
$(PATH)
make develop
toxtest
test-pypy
:
$(PYPY)
test-pypy
:
$(PYPY)
PYTHON
=
$(PYPY)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
4
/bin:
$(PATH)
make develop toxtest
PYTHON
=
$(PYPY)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
6
/bin:
$(PATH)
make develop toxtest
test-pypy3
:
$(PYPY3)
test-pypy3
:
$(PYPY3)
PYTHON
=
$(PYPY3)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.3_5.5/bin:
$(PATH)
make develop toxtest
PYTHON
=
$(PYPY3)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.3_5.5/bin:
$(PATH)
make develop toxtest
...
...
scripts/install.sh
View file @
feab38df
...
@@ -94,16 +94,16 @@ for var in "$@"; do
...
@@ -94,16 +94,16 @@ for var in "$@"; do
install
3.3.6 python3.3
install
3.3.6 python3.3
;;
;;
3.4
)
3.4
)
install
3.4.
4
python3.4
install
3.4.
5
python3.4
;;
;;
3.5
)
3.5
)
install
3.5.
1
python3.5
install
3.5.
2
python3.5
;;
;;
3.6
)
3.6
)
install
3.6.0b
2 python3.6
install
3.6.0b
4 python3.6b4
;;
;;
pypy
)
pypy
)
install
pypy2-5.
4 pypy54
install
pypy2-5.
6.0 pypy56
;;
;;
pypy3
)
pypy3
)
install
pypy3.3-5.5-alpha pypy3.3_5.5
install
pypy3.3-5.5-alpha pypy3.3_5.5
...
...
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