Skip to content

Commit

Permalink
Add support for Python 3.12 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Sep 11, 2023
1 parent f0232e5 commit 2e7907a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions requirements-tests39.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# for python 3.9 *and newer*
pytest
pytest-cov
# For Python 3.9 *and newer*
pytest>=7.4.2
pytest-cov>=4.1.0
flake8
autopep8
docformatter
Expand Down
10 changes: 4 additions & 6 deletions requirements-tests39.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ astroid==2.13.2
# via
# -r requirements-tests39.in
# pylint
attrs==21.4.0
# via pytest
autopep8==1.6.0
# via -r requirements-tests39.in
coverage[toml]==6.3.2
Expand All @@ -24,6 +22,8 @@ docutils==0.18.1
# via
# doc8
# restructuredtext-lint
exceptiongroup==1.1.3
# via pytest
flake8==4.0.1
# via -r requirements-tests39.in
iniconfig==1.1.1
Expand All @@ -46,8 +46,6 @@ platformdirs==2.5.1
# via pylint
pluggy==1.0.0
# via pytest
py==1.11.0
# via pytest
pycodestyle==2.8.0
# via
# autopep8
Expand All @@ -64,11 +62,11 @@ pylint==2.15.10
# via -r requirements-tests39.in
pyparsing==3.0.7
# via packaging
pytest==7.1.1
pytest==7.4.2
# via
# -r requirements-tests39.in
# pytest-cov
pytest-cov==3.0.0
pytest-cov==4.1.0
# via -r requirements-tests39.in
restructuredtext-lint==1.4.0
# via
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ def main():
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Localization',
'Topic :: Software Development :: Internationalization',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = update, compile, autopep8, docformatter, isort, pylint, flake8, pydocstyle, docs, py26, py27, py34, py35, py36, py37, py38, py39, py310
envlist = update, compile, autopep8, docformatter, isort, pylint, flake8, pydocstyle, docs, py{26, 27, 34, 35, 36, 37, 38, 39, 310, 311, 312}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 2e7907a

Please sign in to comment.