Skip to content

Commit

Permalink
Tightened dependency restrictions in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdklatt committed Nov 27, 2023
1 parent 7991af1 commit 69d058c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
Expand All @@ -26,8 +26,9 @@ dependencies = [
# Relying on Semantic Versioning instead of pinned versions to minimize
# breaking changes while making it easier to recieve critical updates.
# Add a rquirements.txt file for production deployments.
"quart>=0.17.0,<1",
"tomli>=2.0.1,<3; python_version<'3.11'"
"quart>=0.17.0,<0.18",
"tomli>=2.0.1,<3; python_version<'3.11'",
"Werkzeug>=2.3.8,<2.4",
]
dynamic = ["version", "readme"]

Expand All @@ -45,7 +46,7 @@ dev = [
"pytest-asyncio>=0.21.0,<1",
"sphinx>=6.2.1,<7",
"sphinx_rtd_theme>=1.2.1,<2",
"twine>=4.0.2,<5"
"twine>=4.0.2,<5",
]

[build-system]
Expand Down
2 changes: 1 addition & 1 deletion src/httpexec/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
and backwards compatibility is not guaranteed for minor versions.
"""
__version__ = "1.0.1"
__version__ = "1.0.2.dev0"

0 comments on commit 69d058c

Please sign in to comment.