@@ -175,7 +175,7 @@ def test_keep_full_version_cli(tmp_path: Path) -> None:
175175 [project]
176176 classifiers = [
177177 "Programming Language :: Python :: 3 :: Only",
178- "Programming Language :: Python :: 3.8 ",
178+ "Programming Language :: Python :: 3.9 ",
179179 ]
180180 dependencies = [
181181 "a==1.0.0",
@@ -186,7 +186,7 @@ def test_keep_full_version_cli(tmp_path: Path) -> None:
186186 """
187187 pyproject_toml = tmp_path / "pyproject.toml"
188188 pyproject_toml .write_text (dedent (start ))
189- args = [str (pyproject_toml ), "--keep-full-version" , "--max-supported-python" , "3.8 " ]
189+ args = [str (pyproject_toml ), "--keep-full-version" , "--max-supported-python" , "3.9 " ]
190190 run (args )
191191 output = pyproject_toml .read_text ()
192192 assert output == dedent (start )
@@ -212,7 +212,7 @@ def test_pyproject_toml_config(tmp_path: Path, capsys: pytest.CaptureFixture[str
212212 column_width = 20
213213 indent = 4
214214 keep_full_version = true
215- max_supported_python = "3.10 "
215+ max_supported_python = "3.11 "
216216 ignore_extra = true
217217 """
218218 filename = tmp_path / "pyproject.toml"
@@ -226,9 +226,9 @@ def test_pyproject_toml_config(tmp_path: Path, capsys: pytest.CaptureFixture[str
226226 ]
227227 classifiers = [
228228 "Programming Language :: Python :: 3 :: Only",
229- "Programming Language :: Python :: 3.8",
230229 "Programming Language :: Python :: 3.9",
231230 "Programming Language :: Python :: 3.10",
231+ "Programming Language :: Python :: 3.11",
232232 ]
233233 dynamic = [
234234 "B",
@@ -241,7 +241,7 @@ def test_pyproject_toml_config(tmp_path: Path, capsys: pytest.CaptureFixture[str
241241 column_width = 20
242242 indent = 4
243243 keep_full_version = true
244- max_supported_python = "3.10 "
244+ max_supported_python = "3.11 "
245245 ignore_extra = true
246246 """
247247 got = filename .read_text ()
0 commit comments