Skip to content

Commit

Permalink
Bump minimum Python version to 3.7
Browse files Browse the repository at this point in the history
It's no longer easy to test with older Python versions, so bump the
minimum to 3.7.
  • Loading branch information
iustin committed Apr 22, 2023
1 parent 46d5542 commit f543e38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pylibacl

This is a Python 3.4+ extension module allows you to manipulate the
This is a Python 3.7+ extension module allows you to manipulate the
POSIX.1e Access Control Lists present in some OS/file-systems
combinations.

Expand Down Expand Up @@ -33,7 +33,8 @@ FreeBSD 7 also has quite good support. If any other platform
implements the POSIX.1e draft, pylibacl can be used. I heard that
Solaris does, but I can't test it.

- Python 3.4 or newer. Python 2.4+ was supported in the 0.5.x branch.
- Python 3.7 or newer. Python 2.4+ was supported in the 0.5.x branch,
Python 3.4+ in the 0.6 branch.
- Operating system:
- Linux, kernel v2.4 or newer, and the libacl library and
development packages (all modern distributions should have this,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
libraries=libs,
define_macros=macros,
)],
python_requires = ">=3.4",
python_requires = ">=3.7",
# Note: doesn't work since it's not a package. Sigh.
package_data = {
'': ['py.typed', 'posix1e.pyi'],
Expand Down

0 comments on commit f543e38

Please sign in to comment.