Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release attrs upper bound #121

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clearml_agent/backend_api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_http_session_with_retry(
session = requests.Session()

if backoff_max is not None:
Retry.BACKOFF_MAX = backoff_max
Retry.DEFAULT_BACKOFF_MAX = backoff_max

retry = Retry(
total=total, connect=connect, read=read, redirect=redirect, status=status,
Expand Down
2 changes: 1 addition & 1 deletion clearml_agent/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.4.1'
__version__ = '1.4.2'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this change as this is already set to 1.5.0rc0

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
attrs>=18.0,<20.4.0
attrs>=18.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we need to safeguard against potential backward compatibility issues (or problematic versions), we'd rather limit the version here - we can limit to ,<22.1.0 which is the latest version at the moment and seems to be stable

enum34>=0.9,<1.2.0 ; python_version < '3.6'
furl>=2.0.0,<2.2.0
future>=0.16.0,<0.19.0
Expand Down