@@ -113,8 +113,8 @@ def test_get_pyproject_info(self):
113113 get_pyproject_info (file_path = Path (__file__ ), default_min_py_version = '3.7' ),
114114 PyProjectInfo (
115115 pyproject_toml_path = PACKAGE_ROOT / 'pyproject.toml' ,
116- py_min_ver = Version ('3.10 ' ),
117- raw_py_ver_req = '>=3.10 ' ,
116+ py_min_ver = Version ('3.9 ' ),
117+ raw_py_ver_req = '>=3.9 ' ,
118118 ),
119119 )
120120
@@ -133,8 +133,8 @@ def test_get_config(self):
133133 git_info = GitInfo (cwd = PACKAGE_ROOT , main_branch_name = 'main' ),
134134 pyproject_info = PyProjectInfo (
135135 pyproject_toml_path = PACKAGE_ROOT / 'pyproject.toml' ,
136- py_min_ver = Version ('3.10 ' ),
137- raw_py_ver_req = '>=3.10 ' ,
136+ py_min_ver = Version ('3.9 ' ),
137+ raw_py_ver_req = '>=3.9 ' ,
138138 ),
139139 max_line_length = 119 ,
140140 ),
@@ -174,7 +174,7 @@ def test_format_one_file(self):
174174 [
175175 '.../pyupgrade' ,
176176 '--exit-zero-even-if-changed' ,
177- '--py310 -plus' ,
177+ '--py39 -plus' ,
178178 'manageprojects/tests/test_format_file.py' ,
179179 ],
180180 [
@@ -202,7 +202,7 @@ def test_format_one_file(self):
202202 '--line-length' ,
203203 '119' ,
204204 '--target-version' ,
205- 'py310 ' ,
205+ 'py39 ' ,
206206 'manageprojects/tests/test_format_file.py' ,
207207 ],
208208 ['.../flake8' , '--max-line-length' , '119' , 'manageprojects/tests/test_format_file.py' ],
@@ -239,7 +239,7 @@ def test_format_one_file(self):
239239 [
240240 '.../pyupgrade' ,
241241 '--exit-zero-even-if-changed' ,
242- '--py310 -plus' ,
242+ '--py39 -plus' ,
243243 'manageprojects/tests/test_format_file.py' ,
244244 ],
245245 ['.../autoflake' , '--in-place' , 'manageprojects/tests/test_format_file.py' ],
0 commit comments