Skip to content

Commit 2c17859

Browse files
committed
Drop Python 3.8
1 parent 0004f49 commit 2c17859

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/workflows/checks_template.yml

Lines changed: 1 addition & 1 deletion
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.8', '3.9', '3.10', '3.11', '3.12']"
18+
default: "['3.9', '3.10', '3.11', '3.12']"
1919
workflow_dispatch:
2020

2121
jobs:

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ formats: all
1919

2020
# Optionally set the version of Python and requirements required to build your docs
2121
python:
22-
# `sphinx` requires either Python >= 3.8 or `typed-ast` to reflect type comments
22+
# `sphinx` requires either Python >= 3.9 or `typed-ast` to reflect type comments
2323
# in the documentation. See: https://github.com/sphinx-doc/sphinx/pull/6984
2424
install:
2525
- method: pip

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.8%20%7C%203.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-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.8 to Python 3.12.
37+
> Optuna-Integration supports from Python 3.9 to Python 3.12.
3838
> Optuna Docker image is also provided at [DockerHub](https://hub.docker.com/r/optuna/optuna).
3939
4040
## Integration Modules

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation
22
============
33

4-
Optuna-Integration supports Python 3.8 or newer.
4+
Optuna-Integration supports Python 3.9 or newer.
55

66
We recommend to install Optuna-Integration via pip:
77

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
@@ -25,7 +24,7 @@ classifiers = [
2524
"Topic :: Software Development :: Libraries",
2625
"Topic :: Software Development :: Libraries :: Python Modules",
2726
]
28-
requires-python = ">=3.8"
27+
requires-python = ">=3.9"
2928
dependencies = [
3029
"optuna",
3130
]
@@ -54,7 +53,7 @@ document = [
5453
"mlflow",
5554
"pandas",
5655
"scikit-learn>=0.24.2",
57-
"scipy>=1.9.2; python_version>='3.8'",
56+
"scipy>=1.9.2; python_version>='3.9'",
5857
"sphinx",
5958
"sphinx-notfound-page",
6059
"sphinx_rtd_theme",

0 commit comments

Comments
 (0)