Skip to content

Commit 69a8175

Browse files
authored
Merge pull request #10 from jugmac00/add-tox
Claim support for Python 3.8 - 3.13
2 parents 9ca4869 + 3da5eb7 commit 69a8175

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v4 # 5.4.0 drops Python 3.8 support
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ TAGS
22
tags
33
lib/testtools
44
MANIFEST
5+
build
56
dist
67
*~
78
.eggs

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ testscenarios release notes
66
IN DEVELOPMENT
77
~~~~~~~~~~~~~~
88

9+
0.6
10+
~~~
11+
12+
IMPROVEMENTS
13+
------------
14+
15+
* Claim Python 3.8 - 3.13 support. (Jürgen Gmach)
16+
17+
CHANGES
18+
-------
19+
20+
* Dropped support for Python < 3.8. (Jürgen Gmach)
21+
22+
* Cleaned up meta data. (Jürgen Gmach)
23+
924
0.5
1025
~~~
1126

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ different situations).
2525
Dependencies
2626
============
2727

28-
* Python 2.6+
29-
* testtools <https://launchpad.net/testtools>
28+
* testtools <https://github.com/testing-cabal/testtools>
3029

3130

3231
Why TestScenarios

setup.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[metadata]
22
name = testscenarios
33
summary = Testscenarios, a pyunit extension for dependency injection
4-
description-file = README.rst
4+
description_file = README.rst
55
author = Testing-cabal
6-
author-email = testing-cabal@lists.launchpad.net
7-
home-page = https://launchpad.net/testscenarios
6+
author_email = testing-cabal@lists.launchpad.net
7+
home_page = https://launchpad.net/testscenarios
88
classifier =
99
Development Status :: 6 - Mature
1010
Intended Audience :: Developers
@@ -16,8 +16,8 @@ classifier =
1616
Topic :: Software Development :: Quality Assurance
1717
Topic :: Software Development :: Testing
1818

19+
[options]
20+
python_requires = >=3.8
21+
1922
[test]
2023
test_module = testscenarios.tests
21-
22-
[bdist_wheel]
23-
universal = 1

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
setuptools.setup(
55
setup_requires=['pbr'],
66
pbr=True)
7-

0 commit comments

Comments
 (0)