Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- 5432:5432
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.13.3"]
python: ["3.8", "3.10", "3.11", "3.13.3"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -48,13 +48,13 @@ jobs:
DATABASE_URL: postgresql+psqlpy://postgres:password@localhost:5432/test_db

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

- name: Upload coverage report
if: matrix.python == '3.9'
if: matrix.python == '3.10'
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
Expand All @@ -66,11 +66,11 @@ jobs:
matrix:
include:
- os: windows-latest
python: "3.9"
python: "3.10"
- os: windows-latest
python: "3.13.3"
- os: macos-latest
python: "3.9"
python: "3.10"
- os: macos-latest
python: "3.13.3"
steps:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -94,7 +93,7 @@ quote-style = "double"
indent-style = "space"

[tool.mypy]
python_version = "3.9"
python_version = "3.10"
plugins = ["pydantic.mypy"]
follow_imports = "silent"
check_untyped_defs = true
Expand Down