File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,17 @@ jobs:
22
22
23
23
- name : Build PyGAD from the Repository
24
24
run : |
25
- # python3 -m pip install --upgrade build
26
- pip3 install setuptools==58.2.0
27
- pip3 install build
28
- python3.12 -m build --sdist --wheel
29
- # python3 -m build
25
+ pip3 install distutils
26
+ python3 -m pip install --upgrade build
27
+ python3 -m build
28
+
29
+ # pip3 install setuptools==58.2.0
30
+ # python3.12 -m build --sdist --wheel
30
31
31
32
- name : Install PyGAD after Building the .whl File
32
33
run : |
33
- find ./dist/*.whl | xargs python3.12 -m pip install
34
+ find ./dist/*.whl | xargs -m pip install
35
+ # find ./dist/*.whl | xargs python3.12 -m pip install
34
36
35
37
- name : Install PyTest
36
38
run : pip install pytest
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [" setuptools>=61.0" ]
3
- # requires = ["setuptools"]
2
+ # requires = ["setuptools>=61.0"]
3
+ requires = [" setuptools" ]
4
4
build-backend = " setuptools.build_meta"
5
5
# requires = ["hatchling"]
6
6
# build-backend = "hatchling.build"
You can’t perform that action at this time.
0 commit comments