Skip to content

Commit

Permalink
Update the requests dependency version requirements so that it can wo…
Browse files Browse the repository at this point in the history
…rk with other libraries
  • Loading branch information
edocsss committed Jun 28, 2024
1 parent cf78ca5 commit 24b973c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pyfreedb/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 24b973c

Please sign in to comment.