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
44d93f00
Commit
44d93f00
authored
Jan 31, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump Travis python versions. [skip appveyor]
parent
a67cda16
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
CHANGES.rst
CHANGES.rst
+2
-0
Makefile
Makefile
+7
-9
scripts/install.sh
scripts/install.sh
+3
-3
No files found.
CHANGES.rst
View file @
44d93f00
...
...
@@ -29,6 +29,8 @@
- The internal, undocumented class ``gevent._socket3._fileobject`` has
been removed. See :issue:`1084`.
- Travis CI tests on Python 3.7.0a4 and PyPy 2.7 5.10.0 and PyPy 3.5
5.10.1.
1.3a1 (2018-01-27)
==================
...
...
Makefile
View file @
44d93f00
...
...
@@ -126,9 +126,9 @@ PY27=$(BUILD_RUNTIMES)/snakepit/python2.7.14
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4.7
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5.4
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6.4
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.0a
3
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
9
0
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5
90
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.0a
4
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
10
0
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5
101
TOOLS
=
$(BUILD_RUNTIMES)
/tools
...
...
@@ -140,8 +140,6 @@ TOOL_PYTHON=$(TOOL_VIRTUALENV)/bin/python
TOOL_PIP
=
$(TOOL_VIRTUALENV)
/bin/pip
TOOL_INSTALL
=
$(TOOL_PIP)
install
--upgrade
$(PY278)
:
scripts/install.sh 2.7.8
$(PY27)
:
scripts/install.sh 2.7
...
...
@@ -176,7 +174,7 @@ develop:
# Then start installing our deps so they can be cached. Note that use of --build-options / --global-options / --install-options
# disables the cache.
# We need wheel>=0.26 on Python 3.5. See previous revisions.
GEVENTSETUP_EV_VERIFY
=
3
python
-m
pip
install
-U
-r
dev-requirements.txt
GEVENTSETUP_EV_VERIFY
=
3
${PYTHON}
-m
pip
install
-U
-r
dev-requirements.txt
${PYTHON}
scripts/travis.py
fold_end
install
test-py27
:
$(PY27)
...
...
@@ -192,13 +190,13 @@ test-py36: $(PY36)
PYTHON
=
python3.6.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.4/bin:
$(PATH)
make develop allbackendtest
test-py37
:
$(PY37)
PYTHON
=
python3.7.0a
3
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0a3
/bin:
$(PATH)
make develop allbackendtest
PYTHON
=
python3.7.0a
4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0a4
/bin:
$(PATH)
make develop allbackendtest
test-pypy
:
$(PYPY)
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
9
0/bin:
$(PATH)
make develop cffibackendtest coverage_combine
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
10
0/bin:
$(PATH)
make develop cffibackendtest coverage_combine
test-pypy3
:
$(PYPY3)
PYTHON
=
$(PYPY3)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.5_5
90
/bin:
$(PATH)
make develop basictest
PYTHON
=
$(PYPY3)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.5_5
101
/bin:
$(PATH)
make develop basictest
test-py27-noembed
:
$(PY27)
cd
deps/libev
&&
./configure
--disable-dependency-tracking
&&
make
...
...
scripts/install.sh
View file @
44d93f00
...
...
@@ -97,13 +97,13 @@ for var in "$@"; do
install
3.6.4 python3.6.4
;;
3.7
)
install
3.7.0a
3 python3.7.0a3
install
3.7.0a
4 python3.7.0a4
;;
pypy
)
install
pypy2.7-5.
9.0 pypy59
0
install
pypy2.7-5.
10.0 pypy510
0
;;
pypy3
)
install
pypy3.5-5.
9.0 pypy3.5_590
install
pypy3.5-5.
10.1 pypy3.5_5101
;;
esac
done
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