Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
Drop python 3.8; Update pinned versions of poetry
  • Loading branch information
andrewrosss committed Jul 7, 2024
1 parent 9f44e10 commit 13dfd05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand All @@ -26,7 +25,7 @@ jobs:

- name: Install Poetry
run: |
export POETRY_VERSION=1.6.1
export POETRY_VERSION=1.8.2
curl -sSL https://install.python-poetry.org | python3 -
export PATH="${HOME}/.local/bin:$PATH"
echo "${PATH}" >> "${GITHUB_PATH}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Install Poetry
run: |
export POETRY_VERSION=1.6.1
export POETRY_VERSION=1.8.2
curl -sSL https://install.python-poetry.org | python3 -
export PATH="${HOME}/.local/bin:$PATH"
echo "${PATH}" >> "${GITHUB_PATH}"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand All @@ -26,7 +25,7 @@ jobs:

- name: Install Poetry
run: |
export POETRY_VERSION=1.6.1
export POETRY_VERSION=1.8.2
curl -sSL https://install.python-poetry.org | python3 -
export PATH="${HOME}/.local/bin:$PATH"
echo "${PATH}" >> "${GITHUB_PATH}"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/type-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand All @@ -26,7 +25,7 @@ jobs:

- name: Install Poetry
run: |
export POETRY_VERSION=1.6.1
export POETRY_VERSION=1.8.2
curl -sSL https://install.python-poetry.org | python3 -
export PATH="${HOME}/.local/bin:$PATH"
echo "${PATH}" >> "${GITHUB_PATH}"
Expand Down

0 comments on commit 13dfd05

Please sign in to comment.