Commit b2b1b683 authored by Boris Bonev's avatar Boris Bonev
Browse files

making python3 explicit in workflow

parent 8f054dcb
......@@ -19,15 +19,15 @@ jobs:
python-version: '3.10'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install torch --index-url https://download.pytorch.org/whl/cpu
pip3 install --upgrade pip
pip3 install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install package
run: |
pip install -e .
pip install setuptools wheel
pip3 install -e .
pip3 install setuptools wheel
- name: Build a binary wheel and a source tarball
run: |
python setup.py sdist bdist_wheel
python3 setup.py sdist bdist_wheel
# - name: Publish package to TestPyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment