8000 Test Python 3.12 Beta · Shawmo/GeneticAlgorithmPython@c1cc1bc · GitHub
[go: up one dir, main page]

Skip to content

Commit c1cc1bc

Browse files
committed
Test Python 3.12 Beta
1 parent 0ae9133 commit c1cc1bc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main_py312.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: PyGAD PyTest / Python 3.12
22

33
# Cannot install packages in Python 3.12.
4-
# The reason is that we use setuptools to install the packages.
4+
# The reason is that we use pip for installing packages.
5+
# pip uses setuptools for the installation.
56
# setuptools depends on distutils.
67
# But Python 3.12 does not support distutils.
78
# Let's wait until setuptools changes its dependencies.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
# requires = ["setuptools>=61.0"]
3-
requires = ["setuptools"]
43
# requires = ["setuptools==59.2"]
4+
requires = ["setuptools"]
55
build-backend = "setuptools.build_meta"
66
# requires = ["hatchling"]
77
# build-backend = "hatchling.build"

0 commit comments

Comments
 (0)
0