-
Notifications
You must be signed in to change notification settings - Fork 7
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
Upgrade python to 3.12.7 #1506
base: main
Are you sure you want to change the base?
Upgrade python to 3.12.7 #1506
Conversation
1949f6c
to
0d6e560
Compare
0d6e560
to
f6080d7
Compare
@@ -8,6 +8,7 @@ filterwarnings = [ | |||
"ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pyramid", | |||
"ignore:^Deprecated call to .pkg_resources\\.declare_namespace\\('.*'\\).\\.:DeprecationWarning:pkg_resources", | |||
"ignore:^'cgi' is deprecated and slated for removal in Python 3\\.13$:DeprecationWarning:webob", | |||
"ignore:^datetime\\.datetime\\.utcnow\\(\\) is deprecated and scheduled for removal in a future version\\.:DeprecationWarning", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one due to webob
which sadly hasn't been updated 2021 where even the current main has the issue.
@@ -157,7 +157,7 @@ def parse_file_url(cls, public_url): | |||
|
|||
return data | |||
|
|||
def iter_file(self, file_id, resource_key=None) -> Iterator[ByteString]: | |||
def iter_file(self, file_id, resource_key=None) -> Iterator[bytes]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ByteString
is now deprecated and we should be using plain bytes
instead.
No description provided.