diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 565301a..642e502 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,7 @@ jobs: fail-fast: false matrix: py: + - "3.14" - "3.13" - "3.12" - "3.11" @@ -83,10 +84,14 @@ jobs: fail-fast: false matrix: py: + - "3.14" - "3.13" - "3.12" - "3.11" - "3.10" + django-tenants: + - "3.8.0" + - "3.9.0" name: Check migrations on Python ${{ matrix.py }} steps: @@ -101,6 +106,7 @@ jobs: - name: Install Deps run: | poetry install + poetry run pip install django-tenants==${{ matrix.django-tenants }} - name: Run Initial Migrations run: | poetry run python tests/manage.py migrate_schemas >initial_output.txt 2>&1 @@ -143,7 +149,7 @@ jobs: if: always() uses: actions/upload-artifact@v5 with: - name: migration-test-outputs-py${{ matrix.py }} + name: migration-test-outputs-py${{ matrix.py }}-dt${{ matrix.django-tenants }} path: | initial_output.txt create_output.txt diff --git a/pyproject.toml b/pyproject.toml index 3b92a06..75392d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Framework :: Django", diff --git a/tox.ini b/tox.ini index b7153c6..e69c92b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{310,311,312,313} + py{310,311,312,313,314} [gh] python = @@ -8,6 +8,7 @@ python = "3.11" = py311 "3.12" = py312 "3.13" = py313 + "3.14" = py314 [testenv] usedevelop = true