From 24b973c90cdb0429e513378ed22e569677b6c16a Mon Sep 17 00:00:00 2001 From: Edwin Candinegara Date: Fri, 28 Jun 2024 11:14:27 +0700 Subject: [PATCH] Update the requests dependency version requirements so that it can work with other libraries --- pyproject.toml | 2 +- requirements.txt | 2 +- src/pyfreedb/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 56fed1a..81582c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "google-api-python-client==2.51.0", "google-auth-httplib2==0.1.0", "google-auth-oauthlib==0.5.2", - "requests==2.28.1" + "requests>=2.28.1, < 3" ] [project.urls] diff --git a/requirements.txt b/requirements.txt index a7fa1ad..9955683 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ google-api-python-client==2.51.0 google-auth-httplib2==0.1.0 google-auth-oauthlib==0.5.2 -requests==2.28 +requests>=2.28, <3 black==22.3.0 mypy==0.961 isort==5.10.1 diff --git a/src/pyfreedb/__init__.py b/src/pyfreedb/__init__.py index 2d8b7cb..4acb9ad 100644 --- a/src/pyfreedb/__init__.py +++ b/src/pyfreedb/__init__.py @@ -1,3 +1,3 @@ """PyFreeDB is a Python library that provides common and simple database abstractions on top of Google Sheets.""" -__version__ = "1.0.1" +__version__ = "1.0.2"