Skip to content

Commit

Permalink
misc: dependency update (#8)
Browse files Browse the repository at this point in the history
Increments the minimum requests version to 2.26.0

Increases default timeout to 30 seconds
  • Loading branch information
aramperes authored Aug 9, 2021
1 parent 0a6b2c5 commit f1f0581
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 36 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

No changes

## [1.0.3] - 2021-08-09
### Changed
- Increment minimum `requests` version to 2.26.0
- Increment default client timeout to 30 seconds

## [1.0.2] - 2021-03-26
### Added
- Added utility for parsing wavy.fm date strings (RFC3339): `wavyfm.util.datetime_from_string` (GH-5)
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ flake8 = "*"
mock = "==2.0.0"

[packages]
requests = "==2.20.1"
requests = "==2.26.0"

[requires]
python_version = "3.8"
Expand Down
66 changes: 34 additions & 32 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='wavyfm',
version='1.0.2',
version='1.0.3',
description='Official Python library for wavy.fm',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -29,7 +29,7 @@
'Source': 'https://github.com/wavy/wavyfm-python',
},
install_requires=[
'requests>=2.20.1'
'requests>=2.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,
Expand Down
2 changes: 1 addition & 1 deletion wavyfm/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self,
auth: str = None,
auth_manager: _WavyAuthBase = None,
proxies=None,
requests_timeout=5,
requests_timeout=30,
status_forcelist=None,
retries=3,
status_retries=3,
Expand Down

0 comments on commit f1f0581

Please sign in to comment.