Skip to content

Commit

Permalink
chore!: drop support for Python 3.7 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
bswck authored Jan 15, 2024
1 parent 4721ab5 commit 80ba38c
Show file tree
Hide file tree
Showing 6 changed files with 307 additions and 250 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", 3.12]
python-version: [3.8, 3.9, "3.10", "3.11", 3.12]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Unearth serves as a stable replacement for pip's `PackageFinder` API. It will fo

## Requirements

unearth requires Python >=3.7
unearth requires Python >=3.8

## Installation

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
os.environ.update(PDM_IGNORE_SAVED_PYTHON="1", PDM_USE_VENV="1")


@nox.session(python=("3.7", "3.8", "3.9", "3.10", "3.11", "3.12"))
@nox.session(python=("3.8", "3.9", "3.10", "3.11", "3.12"))
def test(session):
session.run("pdm", "install", "-Gtest", external=True)
session.run("pytest", "tests/")
Expand Down
Loading

0 comments on commit 80ba38c

Please sign in to comment.