Skip to content

Commit

Permalink
Merge branch 'develop' into compatibility_issue/FS-116161
Browse files Browse the repository at this point in the history
  • Loading branch information
amarnathcls authored May 10, 2024
2 parents 13d58d6 + afe1d48 commit 0cf75f6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Filestack-Python Changelog

### 3.6.0 (May 9th, 2024)
- Compatibility fix for AWS Lambda with Python 3.11 [#73](https://github.com/filestack/filestack-python/pull/73)
- A bunch of transform features added [#74](https://github.com/filestack/filestack-python/pull/75)
- Bumped requests lib version from 2.25.1 to >=2.31.0 [#75](https://github.com/filestack/filestack-python/pull/75)

### 3.5.0 (September 17th, 2021)
- Broaden pinned requests version from 2.24.0 to >=2.25.1 [#61](https://github.com/filestack/filestack-python/pull/61)
- Use Client's storage when uploading external urls [#62](https://github.com/filestack/filestack-python/pull/62)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.0
3.6.0
2 changes: 1 addition & 1 deletion filestack/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.5.0'
__version__ = '3.6.0'


class CFG:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest>=4.6.3
pytest-cov>=2.5.0
requests==2.25.1
requests>=2.31.0
responses==0.14.0
trafaret==2.0.2
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,20 @@ def read_version():
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'requests>=2.25.1',
'requests>=2.31.0',
'trafaret==2.0.2'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
],
)

0 comments on commit 0cf75f6

Please sign in to comment.