Skip to content
Merged
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
9 changes: 5 additions & 4 deletions lib_template/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ with open("README.md", "r") as fh:
# http://pypi.python.org/pypi/setuptools
NAME = "{{{projectName}}}"
VERSION = "{{packageVersion}}"
PYTHON_REQUIRES = ">=3.7"
PYTHON_REQUIRES = ">=3.10"
{{#apiInfo}}
{{#apis}}
{{#-last}}
Expand Down Expand Up @@ -54,10 +54,11 @@ setup(
package_data={"{{{packageName}}}": ["py.typed"]},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
Expand Down
9 changes: 5 additions & 4 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# http://pypi.python.org/pypi/setuptools
NAME = "notehub-py"
VERSION = "6.1.0"
PYTHON_REQUIRES = ">=3.7"
PYTHON_REQUIRES = ">=3.10"
REQUIRES = [
"urllib3 >= 2.5.0",
"python-dateutil",
Expand All @@ -50,10 +50,11 @@
package_data={"notehub_py": ["py.typed"]},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
Expand Down
Loading