Skip to content

Commit

Permalink
update pandas to 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rsujeevan committed May 22, 2024
1 parent 33fa8db commit e644855
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/any_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def create_data_popen(X=None):
pyversion = "3.8"
_install_h2oaicore = False
_install_datatable = True
_modules_needed_by_name = ["pandas==1.1.5"]
_modules_needed_by_name = ["pandas==1.5.3"]

import os
from h2oaicore.data import DataContribLoader
Expand Down
4 changes: 2 additions & 2 deletions data/any_env2.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ class FreshEnvData(CustomData):
# NOTE: Keep @wrap_create on a single line
# NOTE: If want to share cache across recipes, can set cache_env=True and set id=<some unique identifier, like myrecipe12345>
# Below caches the env into "id" folder
# @wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.1.5"], cache_env=True, file=__file__, id="myrecipe12345")
# @wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.5.3"], cache_env=True, file=__file__, id="myrecipe12345")
# Below does not cache the env
@wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.1.5"], file=__file__)
@wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.5.3"], file=__file__)
def create_data(X=None):
import os
import datatable as dt
Expand Down
4 changes: 2 additions & 2 deletions data/any_env3.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class FreshEnvData(CustomData):
# NOTE: Keep @wrap_create on a single line
# NOTE: If want to share cache across recipes, can set cache_env=True and set id=<some unique identifier, like myrecipe12345>
# Below caches the env into "id" folder
# @wrap_create(pyversion="3.6", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.1.5"], cache_env=True, file=__file__, id="myrecipe12345")
# @wrap_create(pyversion="3.6", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.5.3"], cache_env=True, file=__file__, id="myrecipe12345")
# Below does not cache the env
@wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.1.5"], file=__file__)
@wrap_create(pyversion="3.8", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.5.3"], file=__file__)
def create_data(X=None):
import os
import datatable as dt
Expand Down
4 changes: 2 additions & 2 deletions data/any_env4.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
class FreshEnvData(CustomData):
# Specify the python package dependencies. Will be installed in order of list
# Below caches the env into "id" folder
# isolate_env = dict(pyversion="3.6", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.1.5"], cache_env=True, id="myrecipe12345")
# isolate_env = dict(pyversion="3.6", install_h2oaicore=False, install_datatable=True, modules_needed_by_name=["pandas==1.5.3"], cache_env=True, id="myrecipe12345")
# Below does not cache the env
isolate_env = dict(pyversion="3.8", install_h2oaicore=False, install_datatable=True,
modules_needed_by_name=["pandas==1.1.5"])
modules_needed_by_name=["pandas==1.5.3"])

@staticmethod
def create_data(X=None):
Expand Down

0 comments on commit e644855

Please sign in to comment.