Skip to content

Commit a1fe28c

Browse files
committed
package: Update minimum required 'requests' module to >=2.32.5
1 parent 08588af commit a1fe28c

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

README.rst

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Features
2525
Requirements
2626
============
2727

28-
* A supported version of Python 3
29-
* Requests 2.9.1+
28+
* Python 3.10+
29+
* Requests 2.32.5+
3030
* **Optional** - ``simplejson``
3131
* **Optional** - ``kazoo`` for SolrCloud mode
3232

@@ -52,9 +52,6 @@ Basic usage looks like:
5252

5353
.. code-block:: python
5454
55-
# If on Python 2.X
56-
from __future__ import print_function
57-
5855
import pysolr
5956
6057
# Create a client instance. The timeout and authentication options are not required.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
],
2424
url="https://github.com/django-haystack/pysolr/",
2525
license="BSD",
26-
install_requires=["requests>=2.9.1", "setuptools"],
26+
install_requires=["requests>=2.32.5", "setuptools"],
2727
python_requires=">=3.10",
2828
extras_require={"solrcloud": ["kazoo>=2.5.0"]},
2929
setup_requires=["setuptools_scm"],

tests/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
31
from .test_admin import * # NOQA
42
from .test_client import * # NOQA
53
from .test_cloud import * # NOQA

0 commit comments

Comments
 (0)