Skip to content

Commit 5375e25

Browse files
authored
Merge pull request #168 from okken/okken_default_312
drop 3.7, add 3.12, tox-uv
2 parents a7acdc5 + d4073a7 commit 5375e25

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -25,6 +25,6 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python }}
2727
- name: Install Tox and any other packages
28-
run: pip install tox
28+
run: pip install tox tox-uv
2929
- name: Run Tox
3030
run: tox -e py

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ All notable changes to this project be documented in this file.
2020
2121
-->
2222

23+
## [2.4.0] - 2024-Aug-27
24+
25+
### Modified
26+
- Drop Python 3.7
27+
- Add testing for Python 3.12
28+
- Add tox-uv to tox.ini and main.yml
29+
2330
## [2.3.1] - 2024-Jan-18
2431

2532
### Modified

pyproject.toml

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,20 @@ authors = [{name = "Brian Okken"}]
44
readme = "README.md"
55
license = {file = "LICENSE.txt"}
66
description="A pytest plugin that allows multiple failures per test."
7-
version = "2.3.1"
8-
requires-python = ">=3.7"
7+
version = "2.4.0"
8+
requires-python = ">=3.8"
99
classifiers = [
1010
"License :: OSI Approved :: MIT License",
1111
"Framework :: Pytest" ,
12+
'Development Status :: 5 - Production/Stable',
13+
'Intended Audience :: Developers',
14+
'Programming Language :: Python :: 3.8',
15+
'Programming Language :: Python :: 3.9',
16+
'Programming Language :: Python :: 3.10',
17+
'Programming Language :: Python :: 3.11',
18+
'Programming Language :: Python :: 3.12',
19+
'Topic :: Software Development :: Testing',
20+
'Topic :: Utilities',
1221
]
1322
dependencies = ["pytest>=7.0.0"]
1423

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, py312, pytest_earliest, coverage, lint
2+
envlist = py38, py39, py310, py311, py312, pytest_earliest, coverage, lint
33

44
skip_missing_interpreters = true
55

@@ -11,7 +11,7 @@ wheel_build_env = .pkg
1111

1212
[testenv:coverage]
1313
deps = coverage
14-
basepython = python3.11
14+
basepython = python3.12
1515
commands =
1616
coverage run --source={envsitepackagesdir}/pytest_check,tests -m pytest
1717
coverage report --fail-under=100 --show-missing
@@ -26,8 +26,8 @@ description = Run earliest supported pytest
2626
[testenv:lint]
2727
skip_install = true
2828
deps = ruff
29-
basepython = python3.11
30-
commands = ruff src tests examples
29+
basepython = python3.12
30+
commands = ruff check src tests examples
3131
description = Run ruff over src, test, exampless
3232

3333
[pytest]

0 commit comments

Comments
 (0)