Skip to content

Commit

Permalink
add Python 3.13, drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Dec 17, 2024
1 parent 7558fc8 commit eb8ff4a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
allow-failure: [false]
test-case: [test-unit-only, test-func-only]
include:
# experimental python
- os: ubuntu-latest
python-version: "3.12"
python-version: "3.13"
allow-failure: true
test-case: test-unit-only
- os: ubuntu-latest
python-version: "3.12"
python-version: "3.13"
allow-failure: true
test-case: test-func-only
# linter tests
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Changes

Changes:
--------
- No change.
- Add support of Python 3.13.
- Drop support of Python 3.8.

Fixes:
------
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ for each process.
* - releases
- | |version| |commits-since| |docker_image|

.. |py_ver| image:: https://img.shields.io/badge/python-3.8%2B-blue.svg?logo=python
:alt: Requires Python 3.8+
.. |py_ver| image:: https://img.shields.io/badge/python-3.9%2B-blue.svg?logo=python
:alt: Requires Python 3.9+
:target: https://www.python.org/getit

.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/6.0.0.svg?logo=github
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ def _parse_requirements(file_path, requirements, links):
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
Expand All @@ -120,7 +120,7 @@ def _parse_requirements(file_path, requirements, links):
package_data={"": ["*.mako"]},
zip_safe=False,
test_suite="tests",
python_requires=">=3.7, <4",
python_requires=">=3.9, <4",
install_requires=REQUIREMENTS,
dependency_links=LINKS,
extras_require={
Expand Down

0 comments on commit eb8ff4a

Please sign in to comment.