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

Support Python 3.7 #193

Merged
merged 1 commit into from
Jul 23, 2018
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 4 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@ environment:
- TOXENV: "py36-pytest29"
- TOXENV: "py36-pytest30"
- TOXENV: "py36-pytest31"
- TOXENV: "py37-pytest30"
- TOXENV: "py37-pytest31"

install:
- echo Installed Pythons
- dir c:\Python*

- C:\Python36\python -m pip install --upgrade --pre tox
- C:\Python37\python -m pip install --upgrade --pre tox

build: false # Not a C# project, build stuff at the test step instead.

test_script:
- C:\Python36\python -m tox
- C:\Python37\python -m tox

# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
# might as well save resources
Expand Down
2 changes: 1 addition & 1 deletion doc/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ installation info in a nutshell

**PyPI name**: py_

**Pythons**: CPython 2.7, 3.4, 3.5, 3.6, PyPy-5.4
**Pythons**: CPython 2.7, 3.4, 3.5, 3.6, 3.7, PyPy-5.4

**Operating systems**: Linux, Windows, OSX, Unix

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def main():
'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
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist=py{27,34,35,36}-pytest{29,30,31}
# Skip py37-pytest29 as such a combination does not work (#192)
envlist=py{27,34,35,36}-pytest{29,30,31},py37-pytest{30,31}

[testenv]
changedir=testing
Expand Down