Skip to content

Commit

Permalink
Merge pull request #69 from hartwork/python38
Browse files Browse the repository at this point in the history
Activate support for Python 3.8
  • Loading branch information
asyncee committed May 19, 2020
2 parents 5a68443 + 3eba6ab commit a90329e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ python:
- 3.5
- 3.6
- 3.7
- 3.8
before_install:
- sudo add-apt-repository -y ppa:deadsnakes/ppa
- sudo apt-get -q update
- sudo apt-get -y install python3.5 python3.6 python3.7
- sudo apt-get -y install python3.5 python3.6 python3.7 python3.8
install: pip install tox coveralls
script: tox
after_success:
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ def run_tests(self):
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Widget Sets',
],

Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
envlist =
py35-{django20,django21,django22},
py36-{django20,django21,django22,django30},
py37-{django20,django21,django22,django30},coverage
py37-{django20,django21,django22,django30},
py38-{django20,django21,django22,django30},coverage

[base]
deps =
Expand All @@ -24,7 +25,7 @@ commands = py.test tests
setenv = {[base]setenv}

[testenv:coverage]
basepython=python3.7
basepython=python3.8
deps =
{[base]deps}
django==3.0
Expand Down

0 comments on commit a90329e

Please sign in to comment.