Skip to content

Commit

Permalink
all version with python3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruilong Li committed Sep 27, 2024
1 parent fce307e commit f5eabf9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
# python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
# torch-version: ['2.0.0', '2.1.0', '2.2.0', '2.3.0', '2.4.0']
# cuda-version: ['cu118', 'cu121', 'cu124']
python-version: ['3.8']
torch-version: ['2.0.0']
cuda-version: ['cu118']
python-version: ['3.10']
torch-version: ['2.0.0', '2.1.0', '2.2.0', '2.3.0', '2.4.0']
cuda-version: ['cu118', 'cu121', 'cu124']
# python-version: ['3.8']
# torch-version: ['2.0.0']
# cuda-version: ['cu118']

exclude:
- python-version: 3.12
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8']
python-version: ['3.10']
steps:

- name: Checkout code
Expand Down Expand Up @@ -80,14 +80,14 @@ jobs:
name: pypi_packages
path: dist

- name: Publish package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
# - name: Publish package to Test PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository-url: https://test.pypi.org/legacy/

# - name: Publish package to PyPI
# env:
# PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
# run: |
# twine upload --username __token__ --password $PYPI_TOKEN dist/*
- name: Publish package to PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload --username __token__ --password $PYPI_TOKEN dist/*

0 comments on commit f5eabf9

Please sign in to comment.