Skip to content

Commit

Permalink
Trying to upgrade to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jun 26, 2023
1 parent 6695084 commit 61fcd33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -43,7 +43,7 @@ jobs:
run: |
set -e
ls -lh dist
pip install nyx_space --find-links dist --force-reinstall -vv
pip install nyx_space --find-links dist --force-reinstall -v --no-cache-dir
pip install pytest numpy pandas plotly pyarrow scipy
pytest
Expand All @@ -61,7 +61,7 @@ jobs:
run: |
set -e
ls -lh dist
pip install nyx_space --find-links dist --force-reinstall -vv
pip install nyx_space --find-links dist --force-reinstall -v --no-cache-dir
pytest
- name: Upload python tests HTMLs
Expand All @@ -79,7 +79,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit 61fcd33

Please sign in to comment.