Skip to content

Commit 0f0b1fd

Browse files
authored
Update minimum version to Python 3.10 (#620)
1 parent 6488bc5 commit 0f0b1fd

File tree

5 files changed

+11
-98
lines changed

5 files changed

+11
-98
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python 3.
1515
uses: actions/setup-python@v3
1616
with:
17-
python-version: 3.9
17+
python-version: "3.10"
1818

1919
- name: Install Poetry
2020
uses: snok/install-poetry@v1

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/[email protected]
1818
with:
19-
python-version: 3.9
19+
python-version: "3.10"
2020

2121
- name: Install Poetry
2222
run: pip install poetry==2.1.3

.github/workflows/qc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
15+
python-version: [ "3.10", "3.11", "3.12" ]
1616

1717
steps:
1818
- uses: actions/[email protected]

poetry.lock

Lines changed: 6 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
license = "MIT"
1111
license-files = ["LICENSE"]
1212
readme = "README.md"
13-
requires-python = ">=3.9,<4.0.0"
13+
requires-python = ">=3.10,<4.0.0"
1414

1515
dependencies = [
1616
"click>=8.1.6",
@@ -59,7 +59,7 @@ style = "pep440"
5959

6060
[tool.black]
6161
line-length = 100
62-
target-version = ["py38", "py39", "py310"]
62+
target-version = ["py310", "py311", "py312", "py313"]
6363

6464
[[tool.mypy.overrides]]
6565
module = [

0 commit comments

Comments
 (0)