File tree 5 files changed +13
-6
lines changed
5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Filestack-Python Changelog
2
2
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
+
3
8
### 3.5.0 (September 17th, 2021)
4
9
- Broaden pinned requests version from 2.24.0 to >=2.25.1 [ #61 ] ( https://github.com/filestack/filestack-python/pull/61 )
5
10
- Use Client's storage when uploading external urls [ #62 ] ( https://github.com/filestack/filestack-python/pull/62 )
Original file line number Diff line number Diff line change 1
- 3.5 .0
1
+ 3.6 .0
Original file line number Diff line number Diff line change 1
- __version__ = '3.5 .0'
1
+ __version__ = '3.6 .0'
2
2
3
3
4
4
class CFG :
Original file line number Diff line number Diff line change 1
1
pytest == 4.6.3
2
2
pytest-cov == 2.5.0
3
- requests == 2.25.1
3
+ requests >= 2.31.0
4
4
responses == 0.14.0
5
5
trafaret == 2.0.2
Original file line number Diff line number Diff line change @@ -23,18 +23,20 @@ def read_version():
23
23
24
24
packages = find_packages (),
25
25
install_requires = [
26
- 'requests>=2.25.1 ' ,
26
+ 'requests>=2.31.0 ' ,
27
27
'trafaret==2.0.2'
28
28
],
29
29
classifiers = [
30
30
'Development Status :: 4 - Beta' ,
31
31
'Intended Audience :: Developers' ,
32
32
'License :: OSI Approved :: Apache Software License' ,
33
33
'Programming Language :: Python' ,
34
- 'Programming Language :: Python :: 3.5' ,
35
- 'Programming Language :: Python :: 3.6' ,
36
34
'Programming Language :: Python :: 3.7' ,
37
35
'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' ,
38
40
'Topic :: Internet :: WWW/HTTP' ,
39
41
],
40
42
)
You can’t perform that action at this time.
0 commit comments