8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae9133 commit c1cc1bcCopy full SHA for c1cc1bc
.github/workflows/main_py312.yml
@@ -1,7 +1,8 @@
1
name: PyGAD PyTest / Python 3.12
2
3
# Cannot install packages in Python 3.12.
4
-# The reason is that we use setuptools to install the packages.
+# The reason is that we use pip for installing packages.
5
+# pip uses setuptools for the installation.
6
# setuptools depends on distutils.
7
# But Python 3.12 does not support distutils.
8
# Let's wait until setuptools changes its dependencies.
pyproject.toml
@@ -1,7 +1,7 @@
[build-system]
# requires = ["setuptools>=61.0"]
-requires = ["setuptools"]
# requires = ["setuptools==59.2"]
+requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# requires = ["hatchling"]
# build-backend = "hatchling.build"
0 commit comments