Skip to content

Commit a071e07

Browse files
committed
add support for python 3.8 and drop python 3.5
#101
1 parent 50658bf commit a071e07

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: actions/checkout@v1
35-
- name: Setup Python 3.5
36-
uses: actions/setup-python@v1
37-
with:
38-
python-version: 3.5
3935
- name: Setup Python 3.6
4036
uses: actions/setup-python@v1
4137
with:
@@ -44,6 +40,10 @@ jobs:
4440
uses: actions/setup-python@v1
4541
with:
4642
python-version: 3.7
43+
- name: Setup Python 3.8
44+
uses: actions/setup-python@v1
45+
with:
46+
python-version: 3.8
4747
- name: Install Dependencies
4848
run: pip install tox
4949
# runs unit tests for each python version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ def read(fname):
5252
"Natural Language :: English",
5353
"License :: OSI Approved :: Apache Software License",
5454
"Programming Language :: Python",
55-
"Programming Language :: Python :: 3.5",
5655
"Programming Language :: Python :: 3.6",
5756
"Programming Language :: Python :: 3.7",
57+
"Programming Language :: Python :: 3.8",
5858
],
5959
setup_requires=["setuptools_scm", "setuptools"],
6060
install_requires=required_packages,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{35,36,37}
2+
envlist = py{36,37,38}
33

44
skip_missing_interpreters = False
55
ignore_basepython_conflict = True

0 commit comments

Comments
 (0)