Skip to content

Commit

Permalink
Fix GitHub Actions workflow to use Python 3.10 and build.
Browse files Browse the repository at this point in the history
  • Loading branch information
zgypa committed Jan 21, 2025
1 parent f3a63fe commit eaab36b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3' # Ensure this matches your project requirements
python-version: '3.10' # Ensure this matches your project requirements

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build twine
- name: Build and check package
run: |
python setup.py sdist bdist_wheel
python -m build
twine check dist/*
- name: Upload to PyPI
Expand Down

0 comments on commit eaab36b

Please sign in to comment.