-
Notifications
You must be signed in to change notification settings - Fork 41
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
fix:Upgrade Python version from 3.8 to 3.11 #195
base: main
Are you sure you want to change the base?
Conversation
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.
Thanks for the PR! I just run the workflows, seemingly there are some problems with upgrading to 3.11, related to pytest dep
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/bin/pytest", line 5, in <module>
from pytest import console_main
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/pytest/__init__.py", line 8, in <module>
from _pytest._code import ExceptionInfo
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/_pytest/_code/__init__.py", line 5, in <module>
from .code import Code
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/_pytest/_code/code.py", line 55, in <module>
from exceptiongroup import BaseExceptionGroup
ModuleNotFoundError: No module named 'exceptiongroup'
We need to take a look on how to solve this problem
hii @refeed The issue seems to be stemming from a missing exceptiongroup module. so i am working on it |
Quality Gate passedIssues Measures |
Hi @Denish3436 , the test is still failing, we need to take a look again. I'm not really sure what's the root problem of this. The issue seems more complicated than I thought earlier :)
Ideally, when we update the Python version, we shouldn't add more dependencies, it should work out of the box. The worst case might be we need to upgrade the versions of our direct dependencies that are defined within the |
|
||
[packages] | ||
simplejson = "==3.17.2" | ||
pydash = "*" |
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.
Could you explain why we need to change this to *
?
This PR solve issue #183