Skip to content

Commit

Permalink
remove 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tmakruck committed Oct 18, 2023
1 parent 612bf06 commit edbabbe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
poetry-version: [ "1.1.15", "1.2.2", "1.3.2", "1.4.2", "1.5.1" ]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -41,7 +41,7 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,20 @@ This section contains a collection of workflow examples to try and help

Some examples are a bit long, so here are some links

- [Testing](#testing)
- [Testing (using an OS matrix)](#testing-using-a-matrix)
- [Codecov upload](#codecov-upload)
- [Running on Windows](#running-on-windows)
- [Virtualenv variations](#virtualenv-variations)
- [Caching the Poetry installation](#caching-the-poetry-installation)
- [Install Poetry Action](#install-poetry-action)
- [Usage](#usage)
- [Defaults](#defaults)
- [Workflow examples and tips](#workflow-examples-and-tips)
- [Testing](#testing)
- [Testing using a matrix](#testing-using-a-matrix)
- [Codecov upload](#codecov-upload)
- [Running on Windows](#running-on-windows)
- [Caching on Windows runners](#caching-on-windows-runners)
- [Virtualenv variations](#virtualenv-variations)
- [Caching the Poetry installation](#caching-the-poetry-installation)
- [Contributing](#contributing)
- [License](#license)
- [Showing your support](#showing-your-support)

#### Testing

Expand Down Expand Up @@ -186,7 +194,7 @@ jobs:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
django-version: ["3", "4" ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Sondre Lillebø Gundersen <sondrelg@live.no.com>"]
maintainers = ["Jonas Krüger Svensson <jonasks@hotmail.com>"]

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
pytest = "^6.1.1"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit edbabbe

Please sign in to comment.