Skip to content

Commit

Permalink
Protect against a bug I got in Datasette PyOdide tests
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored Jun 11, 2024
1 parent df097df commit 86b794b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions webworker.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ async function startDatasette(settings) {
# Workaround for Requested 'h11<0.13,>=0.11', but h11==0.13.0 is already installed
await micropip.install("h11==0.12.0")
await micropip.install("httpx==0.23")
# To avoid possible 'from typing_extensions import deprecated' error:
await micropip.install('typing-extensions>=4.12.2')
await micropip.install("${datasetteToInstall}", pre=${pre})
# Install any extra ?install= dependencies
install_urls = ${JSON.stringify(settings.installUrls)}
Expand Down

0 comments on commit 86b794b

Please sign in to comment.