diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2025-02-16 21:19:58 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2025-02-16 21:21:41 +0100 |
commit | fc766bc3869bc100516431eebb3aa5e2a19da1a1 (patch) | |
tree | a10463ff69378bca26149dcfce50409c79e4bcc6 | |
parent | 1386f677ea3dbe4743b62f986c85dd08d025bcb2 (diff) |
-rw-r--r-- | .github/workflows/test.yml | 2 | ||||
-rwxr-xr-x | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 767659b..cae9ce3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9] + python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -70,6 +70,7 @@ setup( 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Office/Business :: Financial', 'Topic :: Software Development :: Libraries :: Python Modules', @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,38,39,310,311,312,py3},flake8,docs,headers +envlist = py{36,37,38,39,310,311,312,313,py3},flake8,docs,headers skip_missing_interpreters = true [testenv] |