From 69d058cfc771bd173cb53a86d1ffddf0eba61aa8 Mon Sep 17 00:00:00 2001 From: Michael Klatt Date: Mon, 27 Nov 2023 13:10:53 -0600 Subject: [PATCH] Tightened dependency restrictions in pyproject.toml --- pyproject.toml | 9 +++++---- src/httpexec/__version__.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9512fbf..c934f2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", @@ -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"] @@ -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] diff --git a/src/httpexec/__version__.py b/src/httpexec/__version__.py index c5539f4..ae2003f 100644 --- a/src/httpexec/__version__.py +++ b/src/httpexec/__version__.py @@ -15,4 +15,4 @@ and backwards compatibility is not guaranteed for minor versions. """ -__version__ = "1.0.1" +__version__ = "1.0.2.dev0"