diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb9ce26..f878c3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,12 @@ jobs: os: "ubuntu-20.04" - python-version: "3.10.0" os: "ubuntu-20.04" + - python-version: "3.11.0" + os: "ubuntu-20.04" + - python-version: "3.12.0" + os: "ubuntu-20.04" + - python-version: "3.13.0" + os: "ubuntu-20.04" runs-on: ${{ matrix.os }} steps: - name: "Checkout" @@ -35,7 +41,7 @@ jobs: python-version: '${{ matrix.python-version }}' - name: "Install python dependencies" run: | - pip install ".[ci]" + pip install ".[dev,ci]" - name: "Run tests" run: | coverage run -m unittest -v diff --git a/pyproject.toml b/pyproject.toml index f47e08b..91d8bc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,10 +31,6 @@ dev = [ ci = [ "pycryptodome==3.10.1", "stream-inflate==0.0.12", - "coverage==6.2", - "pytest==6.2.5", - "pytest-cov==3.0.0", - "trio==0.19.0" ] [project.urls]