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
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.13']

steps:
- name: Checkout the repository
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9','3.10']
python-version: ['3.9','3.10', '3.11', '3.12', '3.13']
# Set environment variables
steps:
- name: Checkout the repository
Expand Down
5 changes: 0 additions & 5 deletions .isort.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.13
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
.PHONY: isort black flake8 mypy
.PHONY: lint mypy test

lint:
uv run --python 3.10 --extra dev ruff check . --fix
uv run --python 3.10 --extra dev ruff format .
mypy .

mypy:
uv run --python 3.10 --extra dev mypy fastapi_asyncpg

test:
uv run --python 3.9 --extra test pytest tests
uv run --python 3.10 --extra test pytest tests
uv run --python 3.11 --extra test pytest tests
uv run --python 3.12 --extra test pytest tests
uv run --python 3.13 --extra test pytest tests
4 changes: 0 additions & 4 deletions mypy.ini

This file was deleted.

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "fastapi_asyncpg"
version = "1.0.1"
description = "FastAPI integration for asyncpg"
readme = "README.md"
requires-python = ">=3.9,<3.11"
requires-python = ">=3.9,<3.14"
license = {text = "MIT"}
authors = [
{name = "Jordi collell", email = "jordic@gmail.com"}
Expand Down Expand Up @@ -63,6 +63,8 @@ line-ending = "auto"

[tool.mypy]
namespace_packages = true
ignore_missing_imports = true
follow_imports = "skip"

[tool.pytest.ini_options]
asyncio_mode = "auto"
Expand Down
397 changes: 381 additions & 16 deletions uv.lock

Large diffs are not rendered by default.

Loading