Skip to content

Commit a2e8c4d

Browse files
kgala2renovate-bot
andauthored
feat: Add python 3.14 and remove python 3.9 support (#1339)
Co-authored-by: Mend Renovate <bot@renovateapp.com>
1 parent a965c4c commit a2e8c4d

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [macos-latest, windows-latest, ubuntu-latest]
38-
python-version: ["3.9", "3.13"]
38+
python-version: ["3.10", "3.14"]
3939
fail-fast: false
4040
permissions:
4141
contents: read
@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ubuntu-latest
145145
strategy:
146146
matrix:
147-
python-version: ["3.9", "3.13"]
147+
python-version: ["3.10", "3.14"]
148148
fail-fast: false
149149
permissions:
150150
contents: read

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
LINT_PATHS = ["google", "tests", "noxfile.py"]
2424

25-
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
25+
TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"]
2626

2727

2828
@nox.session

requirements-test.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
pytest==8.4.1
1+
pytest==8.4.2
22
mock==5.2.0
33
pytest-cov==7.0.0
4-
pytest-asyncio==1.1.0
5-
SQLAlchemy[asyncio]==2.0.43
4+
pytest-asyncio==1.3.0
5+
SQLAlchemy[asyncio]==2.0.44
66
sqlalchemy-pytds==1.0.2
77
sqlalchemy-stubs==0.4
8-
PyMySQL==1.1.1
8+
PyMySQL==1.1.2
99
pg8000==1.31.5
10-
asyncpg==0.30.0
11-
python-tds==1.16.1
10+
asyncpg==0.31.0
11+
python-tds==1.17.1
1212
aioresponses==0.7.8
1313
pytest-aiohttp==1.1.0

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aiofiles==25.1.0
2-
aiohttp==3.12.15
3-
cryptography==46.0.2
4-
dnspython==2.7.0
5-
Requests==2.32.4
6-
google-auth==2.40.3
2+
aiohttp==3.13.2
3+
cryptography==46.0.3
4+
dnspython==2.8.0
5+
Requests==2.32.5
6+
google-auth==2.43.0

0 commit comments

Comments
 (0)