8000 Fix #2185 - Updated Polyscript and coincident · pyscript/pyscript@93c6bbf · GitHub
[go: up one dir, main page]

Skip to content

Commit 93c6bbf

Browse files
committed
Fix #2185 - Updated Polyscript and coincident
1 parent f5d49ee commit 93c6bbf

8 files changed

+22
-33
lines changed

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
${{ runner.os }}-
5151
5252
- name: NPM Install
53-
run: npm install && npx playwright install
53+
run: npm install && npx playwright install chromium
5454

5555
- name: Build
5656
run: npm run build

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line nu 10000 mberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
${{ runner.os }}-
5353
5454
- name: npm install
55-
run: npm install && npx playwright install
55+
run: npm install && npx playwright install chromium
5656

5757
- name: build
5858
run: npm run build

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
${{ runner.os }}-
5757
5858
- name: Install Dependencies
59-
run: npm install && npx playwright install
59+
run: npm install && npx playwright install chromium
6060

6161
- name: Build Pyscript.core
6262
run: npm run build

.github/workflows/publish-unstable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
${{ runner.os }}-
5858
5959
- name: NPM Install
60-
run: npm install && npx playwright install
60+
run: npm install && npx playwright install chromium
6161

6262
- name: Build
6363
run: npm run build

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ ifeq ($(VIRTUAL_ENV),)
4545
false
4646
else
4747
python -m pip install -r requirements.txt
48-
playwright install
4948
endif
5049

5150
# Clean up generated assets.
@@ -56,7 +55,7 @@ clean:
5655

5756
# Build PyScript.
5857
build:
59-
cd pyscript.core && npx playwright install && npm run build
58+
cd pyscript.core && npx playwright install chromium && npm run build
6059

6160
# Run the precommit checks (run eslint).
6261
precommit-check:

pyscript.core/package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyscript.core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pyscript/core",
3-
"version": "0.5.12",
3+
"version": "0.5.14",
44
"type": "module",
55
"description": "PyScript",
66
"module": "./index.js",
@@ -58,7 +58,7 @@
5858
"@ungap/with-resolvers": "^0.1.0",
5959
"@webreflection/idb-map": "^0.3.1",
6060
"basic-devtools": "^0.1.6",
61-
"polyscript": "^0.15.8",
61+
"polyscript": "^0.15.10",
6262
"sabayon": "^0.5.2",
6363
"sticky-module": "^0.1.1",
6464
"to-json-callback": "^0.1.1",
@@ -69,7 +69,7 @@
6969
"@codemirror/lang-python": "^6.1.6",
7070
"@codemirror/language": "^6.10.3",
7171
"@codemirror/state": "^6.4.1",
72-
"@codemirror/view": "^6.33.0",
72+
"@codemirror/view": "^6.34.0",
7373
"@playwright/test": "1.45.3",
7474
"@rollup/plugin-commonjs": "^28.0.0",
7575
"@rollup/plugin-node-resolve": "^15.3.0",

requirements.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
black==24.4.2
22
isort==5.13.2
3-
pytest==8.2.1
43
pre-commit==3.7.1
5-
playwright==1.44.0
6-
pytest-playwright==0.5.0
7-
pytest-xdist==3.6.1
8-
pexpect==4.9.0
9-
pyodide_py==0.24.1
10-
micropip==0.5.0
11-
toml==0.10.2
12-
numpy==1.26.4
13-
pillow==10.3.0
144
python-minifier==2.9.0
155
setuptools==72.1.0

0 commit comments

Comments
 (0)
0