Skip to content

Commit 8a4e741

Browse files
authored
Merge pull request #193 from yan12125/patch-1
Support Python 3.7
2 parents b7ff2e9 + 0c8e592 commit 8a4e741

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,19 @@ environment:
1313
- TOXENV: "py36-pytest29"
1414
- TOXENV: "py36-pytest30"
1515
- TOXENV: "py36-pytest31"
16+
- TOXENV: "py37-pytest30"
17+
- TOXENV: "py37-pytest31"
1618

1719
install:
1820
- echo Installed Pythons
1921
- dir c:\Python*
2022

21-
- C:\Python36\python -m pip install --upgrade --pre tox
23+
- C:\Python37\python -m pip install --upgrade --pre tox
2224

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

2527
test_script:
26-
- C:\Python36\python -m tox
28+
- C:\Python37\python -m tox
2729

2830
# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
2931
# might as well save resources

doc/install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ installation info in a nutshell
77

88
**PyPI name**: py_
99

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

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

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def main():
3030
'Programming Language :: Python :: 3.4',
3131
'Programming Language :: Python :: 3.5',
3232
'Programming Language :: Python :: 3.6',
33+
'Programming Language :: Python :: 3.7',
3334
'Programming Language :: Python :: Implementation :: CPython',
3435
'Programming Language :: Python :: Implementation :: PyPy',
3536
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
2-
envlist=py{27,34,35,36}-pytest{29,30,31}
2+
# Skip py37-pytest29 as such a combination does not work (#192)
3+
envlist=py{27,34,35,36}-pytest{29,30,31},py37-pytest{30,31}
34

45
[testenv]
56
changedir=testing

0 commit comments

Comments
 (0)