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
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -23,12 +24,19 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e . --no-deps
python -m pip install coveralls
if [ "${{ matrix.python-version }}" != "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
python -m pip install coveralls
fi
python -m pip freeze
- name: Test with pytest
run: |
pytest
if [ "${{ matrix.python-version }}" == "3.13" ]; then
pytest --no-cov # workaround for TheKevJames/coveralls-python#523
else
pytest
fi
- name: Upload coverage data
if: matrix.python-version != '3.13' # workaround for TheKevJames/coveralls-python#523
run: |
coveralls --service=github
env:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ UNRELEASED
Added
-----

* Python 3.10, 3.11, and 3.12 as well as PyPy 3.10 are now officially supported.
* Python 3.10, 3.11, 3.12, and 3.13 as well as PyPy 3.10 are now officially supported.

Removed
-------
Expand Down
60 changes: 29 additions & 31 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@
#
# pip-compile --no-emit-index-url --strip-extras
#
anyio==4.6.0
anyio==4.8.0
# via httpx
argon2-cffi==23.1.0
# via
# devpi-server
# passlib
argon2-cffi-bindings==21.2.0
# via argon2-cffi
attrs==24.2.0
attrs==25.1.0
# via devpi-server
build==1.2.2.post1
# via
# check-manifest
# devpi-client
certifi==2024.8.30
certifi==2025.1.31
# via
# httpcore
# httpx
# requests
cffi==1.17.1
# via argon2-cffi-bindings
charset-normalizer==3.4.0
charset-normalizer==3.4.1
# via requests
check-manifest==0.50
# via devpi-client
coverage==7.6.2
coverage==7.6.12
# via pytest-cov
defusedxml==0.7.1
# via devpi-server
devpi-client==7.1.0
devpi-client==7.2.0
# via
# -r core-requirements.txt
# devpi-plumber
Expand All @@ -45,17 +45,17 @@ devpi-plumber==0.7.0
# via
# -r core-requirements.txt
# -r requirements.in
devpi-server==6.13.0
devpi-server==6.14.0
# via devpi-plumber
exceptiongroup==1.2.2
# via
# anyio
# pytest
h11==0.14.0
# via httpcore
httpcore==1.0.6
httpcore==1.0.7
# via httpx
httpx==0.27.2
httpx==0.28.1
# via devpi-server
hupper==1.12.1
# via pyramid
Expand All @@ -64,7 +64,7 @@ idna==3.10
# anyio
# httpx
# requests
importlib-metadata==8.5.0
importlib-metadata==8.6.1
# via build
iniconfig==2.0.0
# via
Expand All @@ -76,9 +76,9 @@ lazy==1.6
# via
# devpi-common
# devpi-server
mock==5.1.0
mock==5.2.0
# via -r requirements.in
packaging==24.1
packaging==24.2
# via
# build
# packaging-legacy
Expand All @@ -90,7 +90,7 @@ passlib==1.7.4
# via devpi-server
pastedeploy==3.1.0
# via plaster-pastedeploy
pkginfo==1.11.2
pkginfo==1.12.1.2
# via devpi-client
plaster==1.1.2
# via
Expand All @@ -117,39 +117,37 @@ pyproject-hooks==1.2.0
# via build
pyramid==2.0.2
# via devpi-server
pytest==8.3.3
pytest==8.3.5
# via
# -r requirements.in
# pytest-cov
pytest-cov==5.0.0
pytest-cov==6.0.0
# via -r requirements.in
python-dateutil==2.9.0.post0
# via strictyaml
python-utils==3.9.0
python-utils==3.9.1
# via progressbar2
repoze-lru==0.7
# via devpi-server
requests==2.32.3
# via
# devpi-common
# devpi-plumber
ruamel-yaml==0.18.6
ruamel-yaml==0.18.10
# via devpi-server
ruamel-yaml-clib==0.2.8
ruamel-yaml-clib==0.2.12
# via ruamel-yaml
setuptools-scm==8.1.0
setuptools-scm==8.2.0
# via -r requirements.in
six==1.16.0
six==1.17.0
# via
# -r core-requirements.txt
# python-dateutil
sniffio==1.3.1
# via
# anyio
# httpx
# via anyio
strictyaml==1.7.3
# via devpi-server
tomli==2.0.2
tomli==2.2.1
# via
# build
# check-manifest
Expand All @@ -170,19 +168,19 @@ typing-extensions==4.12.2
# anyio
# python-utils
# setuptools-scm
urllib3==2.2.3
urllib3==2.3.0
# via requests
venusian==3.1.0
venusian==3.1.1
# via pyramid
waitress==3.0.1
waitress==3.0.2
# via devpi-server
webob==1.8.8
webob==1.8.9
# via pyramid
zipp==3.20.2
zipp==3.21.0
# via importlib-metadata
zope-deprecation==5.0
zope-deprecation==5.1
# via pyramid
zope-interface==7.1.0
zope-interface==7.2
# via pyramid

# The following packages are considered to be unsafe in a requirements file:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: System :: Archiving :: Packaging',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
Expand Down