Skip to content

Commit

Permalink
Adding Python Version (#216)
Browse files Browse the repository at this point in the history
- this should fix the errors, I am seeing.
  • Loading branch information
carlkidcrypto authored Oct 10, 2024
1 parent 33b79dd commit f61598f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build_and_publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5

- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install cibuildwheel
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build_and_publish_to_test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5

- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install cibuildwheel
run: |
Expand Down

0 comments on commit f61598f

Please sign in to comment.