Skip to content

Commit ab38102

Browse files
committed
update min required python toto3.10
1 parent 57ab802 commit ab38102

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.9'
15+
python-version: '3.10'
1616

1717
- name: Cache pip packages
1818
uses: actions/cache@v3
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Python
4545
uses: actions/setup-python@v4
4646
with:
47-
python-version: '3.9'
47+
python-version: '3.10'
4848

4949
- name: Cache pip packages
5050
uses: actions/cache@v3

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "openevolve"
77
dynamic = ["version"]
88
description = "Open-source implementation of AlphaEvolve"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
license = {text = "Apache-2.0"}
1212
authors = [
1313
{name = "codelion"}
@@ -31,15 +31,15 @@ dev = [
3131

3232
[tool.black]
3333
line-length = 100
34-
target-version = ['py39']
34+
target-version = ['py310']
3535
include = '\.pyi?$'
3636

3737
[tool.isort]
3838
profile = "black"
3939
line_length = 100
4040

4141
[tool.mypy]
42-
python_version = "3.9"
42+
python_version = "3.10"
4343
warn_return_any = true
4444
warn_unused_configs = true
4545
disallow_untyped_defs = true

0 commit comments

Comments
 (0)