-
Notifications
You must be signed in to change notification settings - Fork 0
[MCC-1080029] Fix Body Bug / Remove EOL Python 3.7 #44
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
Conversation
[tool.poetry] | ||
name = "mauth-client" | ||
version = "1.5.1" | ||
version = "1.6.0" |
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.
Should it be 1.5.2
instead (patch fixing broken minor version 5
)?
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.
went with 1.6.0
because i also decided to remove python 3.7 which is EOL tomorrow: https://endoflife.date/python
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.
Got it
# seek() will not work because production Flask and gunicorn give | ||
# objects without a seek() function and blow up... | ||
# yet humorously Flask in our tests gives a normal BytesIO object | ||
# that does have seek() |
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.
😮
requests = "^2.23" | ||
cachetools = "^5.3" | ||
rsa = "^4.0" | ||
importlib-metadata = {version = ">=3.6", python = "<3.8"} |
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.
can you remove this except
block also?
mauth-client-python/mauth_client/__init__.py
Lines 4 to 6 in cc956ff
except ModuleNotFoundError: | |
# needed for Python < 3.8 | |
import importlib_metadata |
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.
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.
thank you!!
No description provided.