Skip to content

Commit

Permalink
Support more recent Python versions
Browse files Browse the repository at this point in the history
Focus testing on Python 3.8+
  • Loading branch information
elyezer committed Jun 21, 2023
1 parent ec196c8 commit 8ce5d04
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.7"
python: "3.11"

sphinx:
configuration: docs/conf.py
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'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',
],
entry_points="""
[console_scripts]
Expand Down
6 changes: 3 additions & 3 deletions tests/sample_output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ Test:
Test without decorator.


DecoratorsTestCase::test_one_decorator:264
DecoratorsTestCase::test_one_decorator:265
------------------------------------------

Assert:
Expand All @@ -334,7 +334,7 @@ Test:
Test with one decorator.


DecoratorsTestCase::test_multiple_decorators:269
DecoratorsTestCase::test_multiple_decorators:271
------------------------------------------------

Assert:
Expand Down Expand Up @@ -372,7 +372,7 @@ Test:
Test without decorator.


MergeDecoratorsTestCase::test_decorator:289
MergeDecoratorsTestCase::test_decorator:290
-------------------------------------------

Assert:
Expand Down

0 comments on commit 8ce5d04

Please sign in to comment.