Skip to content

Commit dce50d8

Browse files
authored
chore(pyproject): explicitly specify supported Python versions (#408)
Similar to splunk/addonfactory-ucc-generator#1452. So we could properly see the classifiers on PyPI (see screenshot below). <img width="339" alt="image" src="https://github.com/user-attachments/assets/e51fd0f3-9056-4a19-a53e-77cf381a8402">
1 parent 148955b commit dce50d8

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,25 @@ description = "The Splunk Software Development Kit for Splunk Solutions"
2121
authors = ["Splunk <addonfactory@splunk.com>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/splunk/addonfactory-solutions-library-python"
24+
keywords = ["splunk", "ucc"]
25+
classifiers = [
26+
"Programming Language :: Python",
27+
"Development Status :: 5 - Production/Stable",
28+
"Intended Audience :: Developers",
29+
"Topic :: Software Development :: Libraries :: Python Modules",
30+
"Topic :: Software Development :: Code Generators",
31+
"License :: OSI Approved :: Apache Software License",
32+
"Programming Language :: Python :: 3.7",
33+
"Programming Language :: Python :: 3.8",
34+
"Programming Language :: Python :: 3.9",
35+
"Programming Language :: Python :: 3.10",
36+
"Programming Language :: Python :: 3.11",
37+
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
39+
]
2440

2541
[tool.poetry.dependencies]
26-
python = "^3.7"
42+
python = ">=3.7,<3.14"
2743
requests = "^2.31.0"
2844
urllib3 = "<2"
2945
sortedcontainers = ">=2"

0 commit comments

Comments
 (0)