Skip to content

Commit

Permalink
Add new python versions
Browse files Browse the repository at this point in the history
closes #24
  • Loading branch information
kuzmoyev committed Sep 1, 2023
1 parent 549f882 commit 90c5e68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
include:
- python-version: '3.10'
- python-version: '3.11'
note: with-style-check

steps:
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ def run(self):
'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',
],
keywords=['beautiful', 'date', 'simple', 'timedelta', 'date-range'],
cmdclass={
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ python =
3.7: pytest
3.8: pytest
3.9: pytest
3.10: pytest, flake8
3.10: pytest
3.11: pytest, flake8

[flake8]
max-line-length = 120
Expand Down

0 comments on commit 90c5e68

Please sign in to comment.