Skip to content

Commit

Permalink
Declare support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodiologist committed Sep 10, 2024
1 parent 56cbe09 commit 7f04b5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
name-prefix: ['']
os: [ubuntu-latest]
python: [3.8, 3.9, '3.10', 3.11, 3.12, pypy-3.10, pyodide]
python: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13-dev, pypy-3.10, pyodide]
include:
# To keep the overall number of runs low, we test Windows and MacOS
# only on the latest CPython.
Expand Down
4 changes: 4 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Unreleased
=============================

New Features
------------------------------
* Python 3.13 is now supported.

Bug Fixes
------------------------------
* Fixed a crash on Python 3.12.6.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run(self):
version='0.0.0',
setup_requires=["wheel"] + requires,
install_requires=requires,
python_requires=">= 3.8, < 3.13",
python_requires=">= 3.8, < 3.14",
entry_points={
"console_scripts": [
"hy = hy.cmdline:hy_main",
Expand Down

0 comments on commit 7f04b5e

Please sign in to comment.