Skip to content

Commit 9fdb63d

Browse files
author
Eugene Shershen
committed
update CI configuration to remove Python 3.9; set Python 3.10 as the target version
1 parent c4b8041 commit 9fdb63d

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- 5432:5432
2828
strategy:
2929
matrix:
30-
python: ["3.8", "3.9", "3.10", "3.11", "3.13.3"]
30+
python: ["3.8", "3.10", "3.11", "3.13.3"]
3131
steps:
3232
- name: Checkout repository
3333
uses: actions/checkout@v4
@@ -48,13 +48,13 @@ jobs:
4848
DATABASE_URL: postgresql+psqlpy://postgres:password@localhost:5432/test_db
4949

5050
- name: Produce coverage report
51-
if: matrix.python == '3.9'
51+
if: matrix.python == '3.10'
5252
run: pytest --cov=psqlpy_sqlalchemy --cov-report=xml
5353
env:
5454
DATABASE_URL: postgresql+psqlpy://postgres:password@localhost:5432/test_db
5555

5656
- name: Upload coverage report
57-
if: matrix.python == '3.9'
57+
if: matrix.python == '3.10'
5858
uses: codecov/codecov-action@v1
5959
with:
6060
file: ./coverage.xml
@@ -66,11 +66,11 @@ jobs:
6666
matrix:
6767
include:
6868
- os: windows-latest
69-
python: "3.9"
69+
python: "3.10"
7070
- os: windows-latest
7171
python: "3.13.3"
7272
- os: macos-latest
73-
python: "3.9"
73+
python: "3.10"
7474
- os: macos-latest
7575
python: "3.13.3"
7676
steps:
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set up Python
102102
uses: actions/setup-python@v5
103103
with:
104-
python-version: "3.9"
104+
python-version: "3.10"
105105

106106
- name: Install dependencies
107107
run: |

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers = [
1717
"License :: OSI Approved :: MIT License",
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3.8",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
@@ -94,7 +93,7 @@ quote-style = "double"
9493
indent-style = "space"
9594

9695
[tool.mypy]
97-
python_version = "3.9"
96+
python_version = "3.10"
9897
plugins = ["pydantic.mypy"]
9998
follow_imports = "silent"
10099
check_untyped_defs = true

0 commit comments

Comments
 (0)