Thanks to visit codestin.com
Credit goes to github.com

Skip to content

BUILD: make sure a python3 is on the path #21053

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ jobs:
# A shallow clone can work when the following issue is resolved:
# https://github.com/actions/checkout/issues/338
fetch-depth: 0

# Used to push the built wheels
- uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Configure mingw for 32-bit builds
run: |
# Force 32-bit mingw
Expand Down Expand Up @@ -159,7 +165,7 @@ jobs:
if [ -z ${TOKEN} ]; then
echo no token set, not uploading
else
python3 -m pip install git+https://github.com/Anaconda-Server/anaconda-client
python -m pip install git+https://github.com/Anaconda-Server/anaconda-client
ls ./wheelhouse/*.whl
anaconda -t ${TOKEN} upload --no-progress --skip -u ${ANACONDA_ORG} ./wheelhouse/*.whl
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
Expand Down