Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 3b1646a

Browse files
shacharooNurdok
authored andcommitted
Support py38 (#423)
* Support python 3.8 * Fix docs and build
1 parent ecbc0ea commit 3b1646a

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
environment:
22
matrix:
33
- TOXENV: "py35-tests"
4-
- TOXENV: "py36-tests"
5-
- TOXENV: "py37-tests"
64
- TOXENV: "py35-install"
5+
- TOXENV: "py36-tests"
76
- TOXENV: "py36-install"
7+
- TOXENV: "py37-tests"
88
- TOXENV: "py37-install"
99
- TOXENV: "py36-docs"
1010

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ matrix:
1111
include:
1212
- python: 3.5
1313
env: TOXENV=py35-tests
14-
- python: 3.6
15-
env: TOXENV=py36-tests
16-
- python: 3.7
17-
dist: xenial
18-
sudo: required
19-
env: TOXENV=py37-tests
2014
- python: 3.5
2115
env: TOXENV=py35-install
16+
- python: 3.6
17+
env: TOXENV=py36-tests
2218
- python: 3.6
2319
env: TOXENV=py36-install
2420
- python: 3.7
25-
dist: xenial
26-
sudo: required
21+
env: TOXENV=py37-tests
22+
- python: 3.7
2723
env: TOXENV=py37-install
24+
- python: 3.8
25+
env: TOXENV=py38-tests
26+
- python: 3.8
27+
env: TOXENV=py38-install
2828
- python: 3.6
2929
env: TOXENV=docs

docs/release_notes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ New Features
1717
docstrings to method calls (#384).
1818
* Extend support for detecting missing argument description in Numpy style
1919
docstrings (#407).
20-
20+
* Added support for Python 3.8 (#423).
2121

2222
Bug Fixes
2323

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'Programming Language :: Python :: 3.5',
2828
'Programming Language :: Python :: 3.6',
2929
'Programming Language :: Python :: 3.7',
30+
'Programming Language :: Python :: 3.8',
3031
'Operating System :: OS Independent',
3132
'License :: OSI Approved :: MIT License',
3233
],

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# install tox" and then run "tox" from this directory.
55

66
[tox]
7-
envlist = {py35,py36,py37}-{tests,install},py36-docs
7+
envlist = {py35,py36,py37,py38}-{tests,install},py36-docs
88

99
[testenv]
1010
download = true
@@ -38,6 +38,10 @@ commands = {[testenv:py37-install]commands}
3838
skip_install = {[testenv:py37-install]skip_install}
3939
commands = {[testenv:py37-install]commands}
4040

41+
[testenv:py38-install]
42+
skip_install = {[testenv:py37-install]skip_install}
43+
commands = {[testenv:py37-install]commands}
44+
4145
[testenv:py36-docs]
4246
changedir=docs
4347
deps =

0 commit comments

Comments
 (0)