Skip to content

Commit 4574f03

Browse files
authored
Require python 3.9
1 parent b5bc23b commit 4574f03

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: true
2929
matrix:
30-
PYTHON_VERSION: ['3.8', '3.9', '3.10', '3.11']
30+
PYTHON_VERSION: ['3.9', '3.10', '3.11']
3131
OS: ['ubuntu-latest', 'windows-latest']
3232
steps:
3333
- name: Checkout branch
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
fail-fast: false
5858
matrix:
59-
PYTHON_VERSION: ['3.8', '3.9', '3.10', '3.11']
59+
PYTHON_VERSION: ['3.9', '3.10', '3.11']
6060
services:
6161
DB:
6262
image: mcr.microsoft.com/mssql/server:2019-latest

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
- nodefaults
55
dependencies:
6-
- python>=3.8
6+
- python>=3.9
77
- setuptools_scm
88
- pre-commit
99
- pytest

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ classifiers = [
2929
"License :: OSI Approved :: BSD License",
3030
"Operating System :: OS Independent",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Programming Language :: Python :: 3.10",
3534
"Programming Language :: Python :: 3.11",
@@ -38,7 +37,7 @@ classifiers = [
3837
readme = "README.md"
3938
dynamic = ["version"]
4039

41-
requires-python = ">=3.8.0"
40+
requires-python = ">=3.9"
4241

4342
dependencies = [
4443
"sqlalchemy >=1.4",
@@ -88,7 +87,6 @@ select = [
8887
# pyupgrade
8988
"UP",
9089
]
91-
target-version = "py38"
9290
exclude=["src/pytsql/grammar/**/*.py"]
9391

9492
[tool.ruff.isort]

0 commit comments

Comments
 (0)