Skip to content

Commit f523f72

Browse files
committed
Make default deploy/linter version Python 3.9
1 parent 5c12396 commit f523f72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

repo_helper/configuration/python_versions_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class python_deploy_version(ConfigVar):
4848

4949
dtype = Union[str, float]
5050
rtype = str
51-
default: float = 3.8
51+
default: float = 3.9
5252
category: str = "python versions"
5353

5454

tests/test_config_vars.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ def test_errors(self, wrong_value: Dict[str, Any], match: str):
583583

584584
class Test_python_deploy_version(OptionalStringTest):
585585
config_var = python_deploy_version
586-
test_value = "3.9"
587-
default_value = "3.8"
586+
test_value = "3.10"
587+
default_value = "3.9"
588588

589589
@property
590590
def wrong_values(self) -> List[Dict[str, Any]]: # noqa: D102
@@ -603,7 +603,7 @@ class Test_python_versions(DictTest):
603603
config_var = python_versions
604604
test_value = {"3.6": {"experimental": True}, "3.7": {}, "pypy3": {"option": "Value"}}
605605
default_value = {
606-
"3.8": {
606+
"3.9": {
607607
"experimental": False,
608608
"matrix_exclude": {},
609609
"platforms": ["Windows", "macOS", "Linux"],

0 commit comments

Comments
 (0)