aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-04-06 11:31:18 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-04-06 11:42:36 +0300
commitb84a31609a42c4c746da2f8230744df4f8f222c2 (patch)
tree3585f9eca9f3a21bd9ad65aa89169b19fb2a53b3
parent7d065ca2a9d88a3651dbe690e479c77761de371b (diff)
downloadydb-b84a31609a42c4c746da2f8230744df4f8f222c2.tar.gz
Intermediate changes
-rw-r--r--contrib/python/requests-oauthlib/.dist-info/METADATA13
-rw-r--r--contrib/python/requests-oauthlib/requests_oauthlib/__init__.py2
-rw-r--r--contrib/python/requests-oauthlib/tests/examples/__init__.py0
-rw-r--r--contrib/python/requests-oauthlib/ya.make2
4 files changed, 10 insertions, 7 deletions
diff --git a/contrib/python/requests-oauthlib/.dist-info/METADATA b/contrib/python/requests-oauthlib/.dist-info/METADATA
index 1029e2ff65..0a62eb5b6c 100644
--- a/contrib/python/requests-oauthlib/.dist-info/METADATA
+++ b/contrib/python/requests-oauthlib/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: requests-oauthlib
-Version: 1.4.0
+Version: 2.0.0
Summary: OAuthlib authentication support for Requests.
Home-page: https://github.com/requests/requests-oauthlib
Author: Kenneth Reitz
@@ -11,8 +11,6 @@ Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
@@ -25,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
-Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+Requires-Python: >=3.4
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: oauthlib >=3.0.0
@@ -96,7 +94,7 @@ To install requests and requests_oauthlib you can use pip:
History
-------
-v1.4.0 (27 Feb 2024)
+v2.0.0 (22 March 2024)
++++++++++++++++++++++++
Full set of changes are in [github](https://github.com/requests/requests-oauthlib/milestone/4?closed=1).
@@ -117,6 +115,11 @@ Additions & changes:
- Updated dependencies
- Cleanup some docs and examples
+v1.4.0 (27 Feb 2024)
+++++++++++++++++++++++++
+
+- Version 2.0.0 published initially as 1.4.0, it was yanked eventually.
+
v1.3.1 (21 January 2022)
++++++++++++++++++++++++
diff --git a/contrib/python/requests-oauthlib/requests_oauthlib/__init__.py b/contrib/python/requests-oauthlib/requests_oauthlib/__init__.py
index a71064cca0..865d72fb76 100644
--- a/contrib/python/requests-oauthlib/requests_oauthlib/__init__.py
+++ b/contrib/python/requests-oauthlib/requests_oauthlib/__init__.py
@@ -6,7 +6,7 @@ from .oauth1_session import OAuth1Session
from .oauth2_auth import OAuth2
from .oauth2_session import OAuth2Session, TokenUpdated
-__version__ = "1.4.0"
+__version__ = "2.0.0"
import requests
diff --git a/contrib/python/requests-oauthlib/tests/examples/__init__.py b/contrib/python/requests-oauthlib/tests/examples/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/contrib/python/requests-oauthlib/tests/examples/__init__.py
diff --git a/contrib/python/requests-oauthlib/ya.make b/contrib/python/requests-oauthlib/ya.make
index d1a60dc100..da3d8536ed 100644
--- a/contrib/python/requests-oauthlib/ya.make
+++ b/contrib/python/requests-oauthlib/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(1.4.0)
+VERSION(2.0.0)
LICENSE(ISC)