Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Update setup.py to build against python 3.11 #243

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
description="XMLStarlet Toolkit: Python CFFI bindings",
install_requires=requirements,
Expand All @@ -49,7 +50,7 @@
packages=find_packages(include=["xmlstarlet"]),
setup_requires=setup_requirements,
cffi_modules=["xmlstarlet_build.py:FFIBUILDER"],
python_requires=">=3.6.*",
python_requires=">=3.6",
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/dimitern/xmlstarlet",
Expand Down
Loading