Skip to content

Commit 98997ce

Browse files
committed
Additional updates.
1 parent 2a8a912 commit 98997ce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
strategy:
9696
fail-fast: true
9797
matrix:
98-
python-version: ["3.9", "3.10", "3.11", "3.12"]
98+
python-version: ["3.10", "3.11", "3.12"]
9999
env:
100100
PYTHON_VER: "${{ matrix.python-version }}"
101101
steps:
@@ -131,7 +131,7 @@ jobs:
131131
strategy:
132132
fail-fast: true
133133
matrix:
134-
python-version: ["3.9", "3.10", "3.11", "3.12"]
134+
python-version: ["3.10", "3.11", "3.12"]
135135
runs-on: "ubuntu-24.04"
136136
env:
137137
PYTHON_VER: "${{ matrix.python-version }}"
@@ -175,7 +175,7 @@ jobs:
175175
- name: "Set up Python"
176176
uses: "actions/setup-python@v5"
177177
with:
178-
python-version: "3.9"
178+
python-version: "3.10"
179179
- name: "Install Python Packages"
180180
run: "pip install poetry"
181181
- name: "Set env"
@@ -221,7 +221,7 @@ jobs:
221221
- name: "Set up Python"
222222
uses: "actions/setup-python@v5"
223223
with:
224-
python-version: "3.9"
224+
python-version: "3.10"
225225
- name: "Install Python Packages"
226226
run: "pip install poetry"
227227
- name: "Set env"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ circuit-maintenance-parser = "circuit_maintenance_parser.cli:main"
6767

6868
[tool.ruff]
6969
line-length = 120
70-
target-version = "py39"
70+
target-version = "py310"
7171

7272
[tool.ruff.lint]
7373
select = [

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def is_truthy(arg):
3535
{
3636
"circuit_maintenance_parser": {
3737
"project_name": "circuit_maintenance_parser",
38-
"python_ver": "3.9",
38+
"python_ver": "3.10",
3939
"local": is_truthy(os.getenv("INVOKE_PARSER_LOCAL", "false")),
4040
"image_name": "circuit_maintenance_parser",
4141
"image_ver": os.getenv("INVOKE_PARSER_IMAGE_VER", "latest"),

0 commit comments

Comments
 (0)