Skip to content

Commit

Permalink
chore: dropped python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Jan 29, 2025
1 parent 43e7390 commit 7ca90f3
Show file tree
Hide file tree
Showing 5 changed files with 397 additions and 392 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/devcontainers/python:3.13

ENV PYTHONUNBUFFERED 1

RUN pip install poetry==1.8
RUN pip install poetry

RUN poetry config virtualenvs.create false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: "3.10"
- name: Install Poetry
run: |
pip install poetry==1.8
pip install poetry
poetry install
- name: Release
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
- "3.11"
Expand All @@ -30,7 +29,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry==1.8
run: pip install poetry
- name: Install dependencies
run: poetry install --with=test
- name: Run tox targets for ${{ matrix.python-version }}
Expand Down
Loading

0 comments on commit 7ca90f3

Please sign in to comment.