diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a43f3d6..c30d3ad 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v4 with: diff --git a/README.rst b/README.rst index ac1d48d..8148d8a 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ pathlib-abc |pypi| |docs| -Base classes for ``pathlib.Path``-ish objects. Requires Python 3.8+. +Base classes for ``pathlib.Path``-ish objects. Requires Python 3.7+. This package is a preview of ``pathlib`` functionality planned for a future release of Python; specifically, it provides two ABCs that can be used to diff --git a/pyproject.toml b/pyproject.toml index 0d719ed..0e87468 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ description = "Backport of pathlib ABCs" readme = "README.rst" license = {file = "LICENSE.txt"} -requires-python = ">=3.8" +requires-python = ">=3.7" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: Python Software Foundation License", diff --git a/tox.ini b/tox.ini index a63c5e7..eb79e18 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] isolated_build = True -envlist = py{38,39,310,311,312,313},sphinx +envlist = py{37,38,39,310,311,312,313},sphinx [testenv] pass_env =