From b6d245985800304d1e43d05982e4b070e3458066 Mon Sep 17 00:00:00 2001 From: TMAKRUCK Date: Wed, 18 Oct 2023 09:21:51 -0600 Subject: [PATCH] remove 3.7 --- .github/workflows/test.yml | 4 ++-- README.md | 22 +++++++++++++++------- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e630e74..b6d9678c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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 diff --git a/README.md b/README.md index ea13df24..02fa889b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: diff --git a/pyproject.toml b/pyproject.toml index f09d5d2b..86d6271d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Sondre Lillebø Gundersen "] maintainers = ["Jonas Krüger Svensson "] [tool.poetry.dependencies] -python = ">=3.7" +python = ">=3.8" pytest = "^6.1.1" [tool.poetry.dev-dependencies]