Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document support for Py3.7 and enable testing of Py3.8-dev #5561

Merged
merged 4 commits into from
Jul 30, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- env: GROUP=2
python: 2.7
- env: GROUP=1
python: 3.6
python: 3.7
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add

dist: xenial
sudo: required

and it will work right now

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep. Indeed it does. Thanks for the tip.

I'm happy to wait a bit to see if there's any activity/stability on this front -- for non-sudo/non-xenial systems -- Travis CI literally added this 10 hours back. I'd prefer to not have to change the configuration multiple times in the span of a few days. :)

- env: GROUP=2
python: 3.6
python: 3.7

# Complete checking for ensuring compatibility
# PyPy
Expand All @@ -39,6 +39,10 @@ jobs:
- env: GROUP=2
python: pypy
# Older Supported CPython
- env: GROUP=1
python: 3.6
- env: GROUP=2
python: 3.6
- env: GROUP=1
python: 3.5
- env: GROUP=2
Expand All @@ -49,14 +53,14 @@ jobs:
python: 3.4

- env: GROUP=1
python: 3.7-dev
python: 3.8-dev
- env: GROUP=2
python: 3.7-dev
python: 3.8-dev

# It's okay to fail on the in-development CPython version.
fast_finish: true
allow_failures:
- python: 3.7-dev
- python: 3.8-dev

before_install: tools/travis/setup.sh
install: travis_retry tools/travis/install.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ On Windows [4]_::
Python and OS Compatibility
---------------------------

pip works with CPython versions 2.7, 3.4, 3.5, 3.6 and also pypy.
pip works with CPython versions 2.7, 3.4, 3.5, 3.6, 3.7 and also pypy.

This means pip works on the latest patch version of each of these minor
versions. Previous patch versions are supported on a best effort approach.
Expand Down
1 change: 1 addition & 0 deletions news/5561.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Python 3.7.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
docs, packaging, lint-py2, lint-py3, mypy,
py27, py34, py35, py67, py37, pypy, pypy3
py27, py34, py35, py36, py37, py38, pypy, pypy3

[testenv]
passenv = CI GIT_SSL_CAINFO
Expand Down