Skip to content

Commit

Permalink
Support Python 3.7
Browse files Browse the repository at this point in the history
Closes #192
  • Loading branch information
Chih-Hsuan Yen authored and Chih-Hsuan Yen committed Jul 23, 2018
1 parent b7ff2e9 commit 0c8e592
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
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

0 comments on commit 0c8e592

Please sign in to comment.