Skip to content

Commit

Permalink
ITables works with Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Nov 2, 2024
1 parent 3f198f0 commit 57cf995
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
pandas-version: [latest]
numpy-version: [latest]
include:
Expand All @@ -49,10 +49,10 @@ jobs:
- python-version: 3.9
pandas-version: '<2.0'
numpy-version: '<2.0'
- python-version: "3.12"
- python-version: "3.13"
pandas-version: pre
polars: true
- python-version: "3.12"
- python-version: "3.13"
uninstall_jinja2: true
runs-on: ubuntu-20.04
steps:
Expand Down
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
ITables ChangeLog
=================

2.2.3 (2024-11-01)
------------------

**Fixed**
- 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))

**Added**
- ITables is now tested with Python 3.13


2.2.2 (2024-09-29)
------------------

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.7"
dependencies = ["IPython", "pandas", "numpy"]
Expand Down
2 changes: 1 addition & 1 deletion src/itables/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ITables' version number"""

__version__ = "2.2.2"
__version__ = "2.2.3-dev"

0 comments on commit 57cf995

Please sign in to comment.