Skip to content

Commit

Permalink
update test in line with NEP 29
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder authored Nov 9, 2023
1 parent c35dfb4 commit 7b552b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cookiecutter.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def test_pyproject_toml(package_path_config_dict):
)
assert project_toml["project"]["description"] == "Lets Test CookierCutter"
assert project_toml["project"]["readme"] == "README.md"
assert project_toml["project"]["requires-python"] == ">=3.8.0"
assert project_toml["project"]["requires-python"] == ">=3.9.0"
assert (
project_toml["project"]["license"]["text"] == "MIT"
) # parameterize this? test if url not given?
Expand All @@ -236,9 +236,9 @@ def test_pyproject_toml(package_path_config_dict):
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
Expand Down

0 comments on commit 7b552b5

Please sign in to comment.