From 88b9ba6f8ea45e24db5ea861a9c8d1b7e8103733 Mon Sep 17 00:00:00 2001 From: David Flood <69060117+d-flood@users.noreply.github.com> Date: Wed, 29 May 2024 14:51:53 -0400 Subject: [PATCH] bump version and update deps versions in pyproject.toml --- catchpy/__init__.py | 2 +- pyproject.toml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/catchpy/__init__.py b/catchpy/__init__.py index 889129f..f3ccba5 100644 --- a/catchpy/__init__.py +++ b/catchpy/__init__.py @@ -1,3 +1,3 @@ # important to use single quotes in version string # for post-commit tagging -__version__ = '2.8.0' +__version__ = '2.9.0' diff --git a/pyproject.toml b/pyproject.toml index 316b358..081ff71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,17 +27,17 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] dependencies = [ - "Django~=4.2", - "iso8601~=2.0.0", - "jsonschema==4.18.4", - "PyJWT==2.8.0", - "PyLD==2.0.3", - "python-dateutil==2.8.2", - "python-dotenv==1.0.0", - "pytz==2023.3", - "requests~=2.31.0", - "django-log-request-id==2.1.0", - "django-cors-headers~=4.2.0", + "Django>=4.2", + "iso8601>=2.0.0", + "jsonschema>=4.18.4", + "PyJWT>=2.8.0", + "PyLD>=2.0.3, <3.0.0", + "python-dateutil>=2.8.2", + "python-dotenv>=1.0.0", + "pytz>=2023.3", + "requests>=2.31.0", + "django-log-request-id>=2.1.0", + "django-cors-headers>=4.2.0", ] [tool.hatch.version]