Skip to content

Commit

Permalink
Add support for Python 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
barneygale committed Jun 9, 2024
1 parent ab99317 commit 7c54049
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 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 7c54049

Please sign in to comment.