Skip to content

Commit afe1d48

Browse files
Upgrading requests lib version (#75)
* bumping requests version, support for Python 3.7+ * CHANGELOG updated with 2 other PRs --------- Co-authored-by: Arindam M <[email protected]>
1 parent 98735cc commit afe1d48

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Filestack-Python Changelog
22

3+
### 3.6.0 (May 9th, 2024)
4+
- Compatibility fix for AWS Lambda with Python 3.11 [#73](https://github.com/filestack/filestack-python/pull/73)
5+
- A bunch of transform features added [#74](https://github.com/filestack/filestack-python/pull/75)
6+
- Bumped requests lib version from 2.25.1 to >=2.31.0 [#75](https://github.com/filestack/filestack-python/pull/75)
7+
38
### 3.5.0 (September 17th, 2021)
49
- Broaden pinned requests version from 2.24.0 to >=2.25.1 [#61](https://github.com/filestack/filestack-python/pull/61)
510
- Use Client's storage when uploading external urls [#62](https://github.com/filestack/filestack-python/pull/62)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.0
1+
3.6.0

filestack/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.5.0'
1+
__version__ = '3.6.0'
22

33

44
class CFG:

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest==4.6.3
22
pytest-cov==2.5.0
3-
requests==2.25.1
3+
requests>=2.31.0
44
responses==0.14.0
55
trafaret==2.0.2

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,20 @@ def read_version():
2323
author_email='[email protected]',
2424
packages=find_packages(),
2525
install_requires=[
26-
'requests>=2.25.1',
26+
'requests>=2.31.0',
2727
'trafaret==2.0.2'
2828
],
2929
classifiers=[
3030
'Development Status :: 4 - Beta',
3131
'Intended Audience :: Developers',
3232
'License :: OSI Approved :: Apache Software License',
3333
'Programming Language :: Python',
34-
'Programming Language :: Python :: 3.5',
35-
'Programming Language :: Python :: 3.6',
3634
'Programming Language :: Python :: 3.7',
3735
'Programming Language :: Python :: 3.8',
36+
'Programming Language :: Python :: 3.9',
37+
'Programming Language :: Python :: 3.10',
38+
'Programming Language :: Python :: 3.11',
39+
'Programming Language :: Python :: 3.12',
3840
'Topic :: Internet :: WWW/HTTP',
3941
],
4042
)

0 commit comments

Comments
 (0)