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
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- 5432:5432
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -63,11 +63,8 @@ jobs:
- name: Install package with extras
run: |
uv pip install --system dist/*.whl
uv pip install --system pymysql psycopg2 pyodbc
uv pip install --system -e ".[postgres,mysql,odbc,test]"
uv pip install --system coverage coveralls
uv pip install --system mypy
uv pip install --system pytest
uv pip install --system -e ".[test]"

# Run tests and save test coverage
- run: coverage run -m pytest
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = {text = "MIT"}
authors = [
{name = "Dimagi", email = "information@dimagi.com"}
]
requires-python = ">=3.9"
requires-python = ">=3.9,<3.15"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand All @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Topic :: Software Development :: Interpreters",
"Topic :: System :: Archiving",
Expand Down
Loading