Skip to content

Commit 8c00368

Browse files
committed
Add Python 3.13
1 parent 2c17859 commit 8c00368

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

.github/workflows/checks-and-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
with:
119119
integration_name: 'fastaiv2'
120120
deprecated: false
121-
python_matrix: "['3.9', '3.10', '3.11', '3.12']"
121+
python_matrix: "['3.9', '3.10', '3.11', '3.12', '3.13']"
122122

123123
keras:
124124
if: needs.changes.outputs.keras == 'true'

.github/workflows/checks_template.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
python_matrix:
1616
required: false
1717
type: string
18-
default: "['3.9', '3.10', '3.11', '3.12']"
18+
default: "['3.9', '3.10', '3.11', '3.12', '3.13']"
1919
workflow_dispatch:
2020

2121
jobs:
@@ -105,11 +105,6 @@ jobs:
105105
pip install git+https://github.com/optuna/optuna@master
106106
pip install --progress-bar off .[test]
107107
108-
if [ "${{ matrix.python-version }}" = "3.8" ] ; then
109-
# TODO(nabe): Remove this line once Python 3.8 is dropped.
110-
pip install --upgrade "fakeredis[lua]<2.30.0"
111-
fi
112-
113108
- name: Install Integration Dependencies
114109
run: |
115110
pip install --progress-bar off .[${{ inputs.integration_name }}]

.github/workflows/sphinx-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-python@v5
2323
with:
24-
python-version: 3.12
24+
python-version: 3.13
2525

2626
- name: Install Dependencies
2727
run: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Optuna-Integration
22

3-
[![Python](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)](https://www.python.org)
3+
[![Python](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)](https://www.python.org)
44
[![pypi](https://img.shields.io/pypi/v/optuna-integration.svg)](https://pypi.python.org/pypi/optuna-integration)
55
[![conda](https://img.shields.io/conda/vn/conda-forge/optuna-integration.svg)](https://anaconda.org/conda-forge/optuna-integration)
66
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/optuna/optuna-integration)
@@ -34,7 +34,7 @@ $ conda install -c conda-forge optuna-integration
3434
> ```
3535
3636
> [!NOTE]
37-
> Optuna-Integration supports from Python 3.9 to Python 3.12.
37+
> Optuna-Integration supports from Python 3.9 to Python 3.13.
3838
> Optuna Docker image is also provided at [DockerHub](https://hub.docker.com/r/optuna/optuna).
3939
4040
## Integration Modules

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
1920
"Programming Language :: Python :: 3 :: Only",
2021
"Topic :: Scientific/Engineering",
2122
"Topic :: Scientific/Engineering :: Mathematics",

0 commit comments

Comments
 (0)