Skip to content

Commit

Permalink
#322: Made URL in IBIS notebook point to new example data bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Aug 23, 2024
1 parent 8b76251 commit 560d103
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion doc/changes/changes_2.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Version: 2.1.0

* #249: Added a troubleshooting section to the user guide documenting died kernel for transformers/te_init.ipynb.
* #284: Improved User Guide regarding Docker volumes
* #322: Made URL in IBIS notebook point to new example data bucket https://dut5tonqye28.cloudfront.net/ai_lab/flight-info

## Refactoring

Expand All @@ -65,5 +66,8 @@ In File [notebook_requirements.txt](https://github.com/exasol/ai-lab/blob/main/e
* Updated `matplotlib:3.7.4` to `3.9.2`
* Updated `jupysql:0.10.10` to `0.10.12`
* Relaxed `stopwatch.py:2.0.1` dependency to `2.*` to avoid inconsistencies with ITDE
* Replaced GitHub dependency to `exasol/notebook-connector:main` by pypi dependency `0.2.9`
* Updated `exasol-notebook-connector:0.2.8` to `0.2.9`
* Updated `ipywidgets:8.1.1` to `8.1.3`

### Dependencies in `ai-lab/pyproject.toml`

Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"def _import_from_cloudfront(conf: Secrets, file_name: str, transform, table_name: str) -> None:\n",
"\n",
" # Read requested csv file from the cloudfront\n",
" response = requests.get(f'https://d1je7p5oh8pade.cloudfront.net/{file_name}')\n",
" response = requests.get(f'https://dut5tonqye28.cloudfront.net/ai_lab/flight-info/{file_name}')\n",
" response.raise_for_status()\n",
" content_stream = io.BytesIO(response.content)\n",
" f_src = io.TextIOWrapper(content_stream, encoding='utf-8')\n",
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ ansible = "^10.3.0"
importlib_resources = "^6.4.3"
rich = "^13.7.1"
pandas = "^2.2.2"
# numpy = "^1.26.4" # avoid version >= 2
humanfriendly = "^10.0"
tenacity = "^9.0.0"
pygithub = "^2.2.0"
Expand Down

0 comments on commit 560d103

Please sign in to comment.