Skip to content

Commit 72d4d66

Browse files
committed
fix install
1 parent e956e69 commit 72d4d66

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.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 }}

src/py/reactpy/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies = [
3434
"colorlog >=6",
3535
"asgiref >=3",
3636
"lxml >=4",
37+
"setuptools >=68",
3738
]
3839
[project.optional-dependencies]
3940
all = ["reactpy[starlette,sanic,fastapi,flask,tornado,testing]"]

0 commit comments

Comments
 (0)