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 53d0118 commit 6330035Copy full SHA for 6330035
1 file changed
.github/workflows/pip.yml
@@ -45,8 +45,14 @@ jobs:
45
# This is needed so that the Git tag is parsed and the version is retrieved
46
git config --global --add safe.directory $(realpath .)
47
48
+ # Upgrade Pip
49
+ pip install --upgrade pip
50
+
51
+ # Install required Python build dependency
52
+ pip install build
53
54
# Build the package
- python3 setup.py sdist
55
+ python3 -m build --sdist
56
- name: Upload package as artifact
57
uses: actions/upload-artifact@v4
58
with:
@@ -82,7 +88,9 @@ jobs:
82
88
83
89
name: pip-package
84
90
- name: Install package
85
- run: pip install $(ls khiops*.tar.gz)
91
+ run: |
92
93
+ pip install $(ls khiops*.tar.gz)
86
94
- name: Run tests
87
95
env:
96
KHIOPS_SAMPLES_DIR: ${{ github.workspace }}/khiops-samples
0 commit comments