Skip to content

Commit 6e88d47

Browse files
authored
Drop python 3.9 references and move to pytest 9.0.0 (#234)
1 parent 0ad5b69 commit 6e88d47

File tree

3 files changed

+643
-1040
lines changed

3 files changed

+643
-1040
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "python-utility-scripts"
33
version = "1.0.25"
44
description = "Python utility scripts"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
readme = "README.md"
77
license = "Apache-2.0"
88
classifiers = [
@@ -40,7 +40,7 @@ dependencies = [
4040
omit = [ "tests/*" ]
4141

4242
[tool.coverage.report]
43-
fail_under = 68
43+
fail_under = 60
4444
skip_empty = true
4545

4646
[tool.coverage.html]
@@ -82,8 +82,8 @@ dev = [ "ipdb>=0.13.13,<0.14", "ipython" ]
8282
test = [
8383
"ipdb>=0.13.13",
8484
"ipython>=8.18.1",
85-
"pytest>=8.0.0,<9",
86-
"pytest-cov>=6.0.0,<7"
85+
"pytest>=9.0.0,<10",
86+
"pytest-cov>=7.0.0,<8"
8787
]
8888

8989
[build-system]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = 3.9, 3.1{0,1,2,3}
2+
envlist = 3.1{0,1,2,3,4}
33
skipsdist = True
44

55
[testenv]

0 commit comments

Comments
 (0)