Skip to content

Commit

Permalink
Update PIL version range to support version 10+ and poetry dependenci…
Browse files Browse the repository at this point in the history
…es (#1527)

## Description

Update PIL version and run poetry update for CI dependencies

- [x] I have reviewed the [Guidelines for Contributing](CONTRIBUTING.md)
and the [Code of Conduct](CODE_OF_CONDUCT.md).
  • Loading branch information
jamie256 committed May 23, 2024
1 parent b7046df commit 9a7b6fa
Show file tree
Hide file tree
Showing 8 changed files with 1,352 additions and 1,017 deletions.
2 changes: 1 addition & 1 deletion python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ test-system-python: dist ## Run tests using the system `python` instead of the l

test-notebooks: ## Run tests for the notebooks
@$(call i, Running notebook tests)
poetry run pytest --no-cov --maxfail=1 test_notebooks/notebook_tests.py
poetry run pytest -n auto --no-cov --maxfail=1 test_notebooks/notebook_tests.py

telemetry-opt-out: ## create opt out file
@$(call i, Creating whylogs telemetry opt-out file)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
},
"outputs": [],
"source": [
"%pip install whylogs==1.3.27"
"%pip install 'whylogs>=1.3.27'"
]
},
{
Expand Down
14 changes: 10 additions & 4 deletions python/examples/integrations/Feature_Stores_and_whylogs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,16 @@
"outputs": [],
"source": [
"# Note: you may need to restart the kernel to use updated packages.\n",
"%pip install --upgrade pip -qq\n",
"%pip install feast==0.22.4 -qq\n",
"%pip install Pygments -qq\n",
"%pip install 'whylogs[viz]' -U"
"%pip install --upgrade pip -qq"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%pip install feast==0.22.4 Pygments 'whylogs[viz]' -qqU"
]
},
{
Expand Down
Loading

0 comments on commit 9a7b6fa

Please sign in to comment.