diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 11cf067..24a0b23 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -119,6 +119,11 @@ jobs: - {django: '==4.2.*', python: '3.9', os: 'ubuntu-latest'} - {django: '==4.2.*', python: '3.10', os: 'ubuntu-latest'} - {django: '==4.2.*', python: '3.11', os: 'ubuntu-latest'} + - {django: '~=4.2.8', python: '3.12', os: 'ubuntu-latest'} + + - {django: '==5.0.*', python: '3.10', os: 'ubuntu-latest'} + - {django: '==5.0.*', python: '3.11', os: 'ubuntu-latest'} + - {django: '==5.0.*', python: '3.12', os: 'ubuntu-latest'} steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index bf644dc..ed0ef32 100644 --- a/setup.py +++ b/setup.py @@ -36,5 +36,6 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], )