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

trying different python version

parent 20563f6e
...@@ -15,18 +15,18 @@ jobs: ...@@ -15,18 +15,18 @@ jobs:
- name: Set up Python 3.9 - name: Set up Python 3.9
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 'pypy3.9' python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: | run: |
python3 -m pip install --upgrade pip python -m pip install --upgrade pip
python3 -m pip install torch --index-url https://download.pytorch.org/whl/cpu python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install package - name: Install package
run: | run: |
python3 -m pip install -e . python -m pip install -e .
pip3 install setuptools wheel pip install setuptools wheel
- name: Build a binary wheel and a source tarball - name: Build a binary wheel and a source tarball
run: | run: |
python3 setup.py sdist bdist_wheel python setup.py sdist bdist_wheel
# - name: Publish package to TestPyPI # - name: Publish package to TestPyPI
# uses: pypa/gh-action-pypi-publish@master # uses: pypa/gh-action-pypi-publish@master
# with: # 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