-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat: Support python 3.10 runtime in apps #126
Conversation
ed4d6e4
to
48995ec
Compare
de71042
to
8f205c4
Compare
8f205c4
to
8143ae8
Compare
044d168
to
37d15d2
Compare
churn-risk/requirements.txt
Outdated
@@ -1,8 +1,9 @@ | |||
pandas==1.1.0 | |||
pygments==2.7.1 | |||
pandas==1.4.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.
can't we upgrade to the latest pandas 1.x (https://pypi.org/project/pandas/1.5.3/ ?)
and plan migration to pandas 2.x ?
churn-risk/requirements.txt
Outdated
pandas==1.1.0 | ||
pygments==2.7.1 | ||
pandas==1.4.0 | ||
Pygments==2.15.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.
newer pygments? https://pypi.org/project/Pygments/2.17.2/
credit-risk/requirements.txt
Outdated
@@ -1,11 +1,12 @@ | |||
numpy==1.19.1 | |||
pandas==1.1.0 | |||
numpy==1.22.2 |
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.
credit-risk/requirements.txt
Outdated
numpy==1.19.1 | ||
pandas==1.1.0 | ||
numpy==1.22.2 | ||
pandas==1.4.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.
credit-risk/requirements.txt
Outdated
plotly==4.10.0 | ||
pygments==2.7.1 | ||
pygments==2.15.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.
@@ -1,5 +1,11 @@ | |||
h2o_wave==0.20.0 | |||
certifi==2024.2.2 | |||
h2o_wave==0.26.3 |
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.
Wave 1.0 introduces a breaking change for handle_on functionality. So Wave update needs to be handled separately.
pygments==2.7.1 | ||
certifi==2024.2.2 | ||
pandas==1.4.0 | ||
pygments==2.15.0 | ||
h2o-wave<1.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.
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.
Wave 1.0 introduces a breaking change for handle_on functionality. So Wave update needs to be handled separately.
h11==0.11.0; python_version >= "3.6" and python_full_version >= "3.6.1" | ||
certifi==2024.2.2 | ||
click==7.1.2 | ||
h11==0.11.0 | ||
h2o-wave<1.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.
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.
Wave 1.0 introduces a breaking change for handle_on functionality. So Wave update needs to be handled separately.
pandas==1.1.0 | ||
pygments==2.7.1 | ||
pandas==1.4.0 | ||
Pygments==2.15.0 | ||
h2o-wave<1.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.
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.
Wave 1.0 introduces a breaking change for handle_on functionality. So Wave update needs to be handled separately.
plotly==4.10.0 | ||
pygments==2.7.1 | ||
pygments==2.15.0 | ||
h2o-wave<1.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.
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.
Wave 1.0 introduces a breaking change for handle_on functionality. So Wave update needs to be handled separately.
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.
agree on wave 1.0+
lgtm
Fixes: #125