diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9b777bb..349ba24 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] pytest-version: [4, 5, 6, 7, 8] steps: @@ -23,11 +23,11 @@ jobs: pip install ".[tests]" - name: Build image run: | - docker-compose -f tests/docker-compose.yml pull - docker-compose -f tests/docker-compose.yml build + docker compose -f tests/docker-compose.yml pull + docker compose -f tests/docker-compose.yml build - name: Run tests run: | pytest -c setup.cfg - name: Stop Docker compose run: | - docker-compose -f tests/docker-compose.yml down + docker compose -f tests/docker-compose.yml down diff --git a/setup.cfg b/setup.cfg index 615920b..fa51664 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifiers = Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 License :: OSI Approved :: MIT License Topic :: Utilities Intended Audience :: Developers