Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import sys


if sys.version_info[0:2] < (3, 9):
raise RuntimeError('Requires Python 3.9 or newer')
if sys.version_info[0:2] < (3, 11):
raise RuntimeError('Requires Python 3.11 or newer')


LOCALE_DIR = Path(__file__).resolve().parent / "packtools" / "sps" / "locale"
Expand Down Expand Up @@ -101,11 +101,10 @@ def run(self):
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.11",
tests_require=TESTS_REQUIRE,
test_suite='tests',
install_requires=INSTALL_REQUIRES,
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[tox]
envlist = {py39,py310,py311}-lxml{492}
envlist = {py311}-lxml{492}

[testenv]
isolated_build=true
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
deps =
lxml492: lxml==4.9.2
Expand Down