Skip to content

Commit 57cf995

Browse files
committed
ITables works with Python 3.13
1 parent 3f198f0 commit 57cf995

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
43+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
4444
pandas-version: [latest]
4545
numpy-version: [latest]
4646
include:
@@ -49,10 +49,10 @@ jobs:
4949
- python-version: 3.9
5050
pandas-version: '<2.0'
5151
numpy-version: '<2.0'
52-
- python-version: "3.12"
52+
- python-version: "3.13"
5353
pandas-version: pre
5454
polars: true
55-
- python-version: "3.12"
55+
- python-version: "3.13"
5656
uninstall_jinja2: true
5757
runs-on: ubuntu-20.04
5858
steps:

docs/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
ITables ChangeLog
22
=================
33

4+
2.2.3 (2024-11-01)
5+
------------------
6+
7+
**Fixed**
8+
- The dependencies of the Streamlit component have been updated ([#327](https://github.com/mwouts/itables/pull/327), [#330](https://github.com/mwouts/itables/pull/330))
9+
10+
**Added**
11+
- ITables is now tested with Python 3.13
12+
13+
414
2.2.2 (2024-09-29)
515
------------------
616

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
]
2829
requires-python = ">= 3.7"
2930
dependencies = ["IPython", "pandas", "numpy"]

src/itables/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""ITables' version number"""
22

3-
__version__ = "2.2.2"
3+
__version__ = "2.2.3-dev"

0 commit comments

Comments
 (0)