-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: handling for context vars. add support for disabling prophet opt…
…ion. (#1209) * added proper handling of context variables * added unit test on prepare_data * update fix for prophet enabling * updated timestamp formats * update redundant dtype conversion * update notebook reference visuals * update notebook reference visuals * update notebook references * add back unit test file * clear nb outputs * remove nb previews * update pyproject toml file * add nb outputs * add nb outputs
- Loading branch information
Showing
7 changed files
with
1,106 additions
and
812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.DS_Store | ||
.Rproj.user | ||
.Rhistory | ||
.pyvenv/ | ||
.venv/ | ||
robynpy.egg-info/ | ||
node_modules/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "robynpy" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = [ | ||
{ name="Gufeng Zhou", email="[email protected]" }, | ||
{ name="Igor Skokan", email="[email protected]" }, | ||
|
@@ -36,6 +36,7 @@ dependencies = [ | |
"plotly", | ||
"nlopt", | ||
"cmake", | ||
"ipykernel", | ||
] | ||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.