Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4 # 5.4.0 drops Python 3.8 support
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ TAGS
tags
lib/testtools
MANIFEST
build
dist
*~
.eggs
Expand Down
15 changes: 15 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ testscenarios release notes
IN DEVELOPMENT
~~~~~~~~~~~~~~

0.6
~~~

IMPROVEMENTS
------------

* Claim Python 3.8 - 3.13 support. (Jürgen Gmach)

CHANGES
-------

* Dropped support for Python < 3.8. (Jürgen Gmach)

* Cleaned up meta data. (Jürgen Gmach)

0.5
~~~

Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ different situations).
Dependencies
============

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


Why TestScenarios
Expand Down
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[metadata]
name = testscenarios
summary = Testscenarios, a pyunit extension for dependency injection
description-file = README.rst
description_file = README.rst
author = Testing-cabal
author-email = [email protected]
home-page = https://launchpad.net/testscenarios
author_email = [email protected]
home_page = https://launchpad.net/testscenarios
classifier =
Development Status :: 6 - Mature
Intended Audience :: Developers
Expand All @@ -16,8 +16,8 @@ classifier =
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing

[options]
python_requires = >=3.8

[test]
test_module = testscenarios.tests

[bdist_wheel]
universal = 1
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
setuptools.setup(
setup_requires=['pbr'],
pbr=True)