Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/ci-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
with:
virtualenvs-create: true
virtualenvs-in-project: true
version: "1.2.2"
version: "2.1.4"
- name: add poetry to windows path
if: runner.os == 'Windows'
run: echo "C:/Users/runneradmin/.local/bin" >> $GITHUB_PATH
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
prepare-linux:
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.11"]
os-version: ["ubuntu-latest" ]
runs-on: ${{ matrix.os-version }}
steps:
Expand All @@ -21,7 +21,7 @@ jobs:
prepare-win:
strategy:
matrix:
python-version: [ "3.8", "3.11" ]
python-version: [ "3.9", "3.11" ]
os-version: [ "windows-latest" ]
runs-on: ${{ matrix.os-version }}
steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
needs: [prepare-linux, prepare-win]
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.11"]
os-version: ["windows-latest", "ubuntu-latest"]
runs-on: ${{ matrix.os-version }}
steps:
Expand All @@ -83,7 +83,7 @@ jobs:
needs: [prepare-linux, prepare-win]
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.11"]
os-version: [ "windows-latest", "ubuntu-latest" ]
runs-on: ${{ matrix.os-version }}
steps:
Expand All @@ -101,7 +101,7 @@ jobs:
needs: [prepare-linux, prepare-win]
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.11"]
os-version: [ "windows-latest", "ubuntu-latest" ]
runs-on: ${{ matrix.os-version }}
steps:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: |
poetry run sphinx-build docs/source build/documentation/ -W -b html
- name: Store docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: build/documentation/
Expand All @@ -148,7 +148,7 @@ jobs:
run: |
poetry build -f wheel -vvv && poetry run check-wheel-contents dist/
- name: Store wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -166,7 +166,7 @@ jobs:
os: "ubuntu-latest"
python-version: "3.9"
- name: Download docs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docs
path: build/documentation/
Expand All @@ -188,7 +188,7 @@ jobs:
os: "ubuntu-latest"
python-version: "3.9"
- name: Download wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down
Loading
Loading