Skip to content

Commit

Permalink
Add python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 23, 2019
1 parent fd45ae0 commit f543fec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions {{cookiecutter.repo_name}}/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ python_versions =
py35
py36
py37
py38
pypy
pypy3

Expand Down
1 change: 1 addition & 0 deletions {{cookiecutter.repo_name}}/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def _unavailable(self, e):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
# uncomment if you test on these interpreters:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ envlist =
{%- if cookiecutter.sphinx_docs == "yes" %}
docs,
{%- endif %}
{py27,py35,py36,py37,pypy,pypy3}{% if cookiecutter.test_matrix_separate_coverage == 'yes' %}-{cover,nocov}{% endif %},
{py27,py35,py36,py37,py38,pypy,pypy3}{% if cookiecutter.test_matrix_separate_coverage == 'yes' %}-{cover,nocov}{% endif %},
report
ignore_basepython_conflict = true

Expand Down

0 comments on commit f543fec

Please sign in to comment.