Skip to content

Commit 7c58714

Browse files
committed
dont create dir
1 parent ce72f07 commit 7c58714

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

.github/actions/test-py/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ runs:
4949
- name: Install Python Wheels
5050
shell: bash
5151
run: |
52-
mkdir -p pycode/wheelhouse
5352
export PYTHON_VERSION_NO_DOT=$(echo "${{ inputs.version }}" | sed 's/\.//g')
5453
for pkg in `ls pycode/wheelhouse/*cp$PYTHON_VERSION_NO_DOT*.whl`; do python -m pip install $pkg; done # packages that contain native extensions are version specific
5554
for pkg in `ls pycode/wheelhouse/*py3*.whl`; do python -m pip install $pkg; done # pure python packages are not version specific

.github/actions/test-pylint/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ runs:
2727
- name: Install Python Wheels
2828
shell: bash
2929
run: |
30-
mkdir -p pycode/wheelhouse
3130
for pkg in `ls pycode/wheelhouse/*cp311*.whl`; do python -m pip install $pkg; done # packages that contain native extensions are version specific
3231
for pkg in `ls pycode/wheelhouse/*py3*.whl`; do python -m pip install $pkg; done # pure python packages are not version specific
3332
python -m pip install --upgrade-strategy only-if-needed "./pycode/memilio-${{ inputs.package }}[dev]"

0 commit comments

Comments
 (0)