Skip to content

Commit

Permalink
Require python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw authored Oct 24, 2024
1 parent b5bc23b commit 4574f03
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: true
matrix:
PYTHON_VERSION: ['3.8', '3.9', '3.10', '3.11']
PYTHON_VERSION: ['3.9', '3.10', '3.11']
OS: ['ubuntu-latest', 'windows-latest']
steps:
- name: Checkout branch
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.8', '3.9', '3.10', '3.11']
PYTHON_VERSION: ['3.9', '3.10', '3.11']
services:
DB:
image: mcr.microsoft.com/mssql/server:2019-latest
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python>=3.8
- python>=3.9
- setuptools_scm
- pre-commit
- pytest
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -38,7 +37,7 @@ classifiers = [
readme = "README.md"
dynamic = ["version"]

requires-python = ">=3.8.0"
requires-python = ">=3.9"

dependencies = [
"sqlalchemy >=1.4",
Expand Down Expand Up @@ -88,7 +87,6 @@ select = [
# pyupgrade
"UP",
]
target-version = "py38"
exclude=["src/pytsql/grammar/**/*.py"]

[tool.ruff.isort]
Expand Down

0 comments on commit 4574f03

Please sign in to comment.