Skip to content

Commit 00c5830

Browse files
committed
fix install
1 parent e956e69 commit 00c5830

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: .github/workflows/.hatch-run.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ jobs:
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252
- name: Install Python Dependencies
53-
run: pip install hatch poetry
53+
run: |
54+
pip install --upgrade pip setuptools
55+
pip install hatch poetry
5456
- name: Run Scripts
5557
env:
5658
NODE_AUTH_TOKEN: ${{ secrets.node-auth-token }}

Diff for: src/py/reactpy/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ starlette = [
4545
sanic = [
4646
"sanic >=21",
4747
"sanic-cors",
48+
"tracerite >=1.1.1",
4849
"uvicorn[standard] >=0.19.0",
4950
]
5051
fastapi = [

0 commit comments

Comments
 (0)