Skip to content

Commit

Permalink
Merge pull request #26 from barneygale/py37
Browse files Browse the repository at this point in the history
Add support for Python 3.7.
  • Loading branch information
barneygale authored Jun 9, 2024
2 parents ab99317 + 48ce04d commit d89dd3c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down

0 comments on commit d89dd3c

Please sign in to comment.