Skip to content

Commit 369531b

Browse files
authored
Merge pull request #241 from zacharyburnett/scsb-225
[SCSB-225] migrate `[tool.pytest.ini_options]` to native TOML
2 parents 5fe7efc + cea7682 commit 369531b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Documentation = "http://spacetelescope.github.io/tweakwcs/"
3838

3939
[project.optional-dependencies]
4040
test = [
41-
"pytest",
41+
"pytest>=9.0",
4242
"pytest-cov",
4343
"scipy",
4444
]
@@ -92,15 +92,15 @@ all_files = "1"
9292
upload-dir = "docs/_build/html"
9393
show-response = 1
9494

95-
[tool.pytest.ini_options]
96-
minversion = "4.6"
95+
[tool.pytest]
96+
minversion = "9.0"
9797
norecursedirs = [
9898
"build",
9999
"docs/_build",
100100
".tox",
101101
]
102102
doctest_plus = "enabled"
103-
addopts = "--ignore=build"
103+
addopts = ["--ignore=build"]
104104

105105
[tool.coverage.run]
106106
omit = [

0 commit comments

Comments
 (0)