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

trying different python version

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