Skip to content

Commit 898b414

Browse files
authored
Merge pull request #213 from pyscript/fix-deploy-to-pip
Use pip to install dependencies. Pin Setuptools.
2 parents 92744e2 + 4889261 commit 898b414

File tree

3 files changed

+10
-18
lines changed

3 files changed

+10
-18
lines changed

.github/workflows/update_docs.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

18-
- name: Setup
19-
uses: conda-incubator/setup-miniconda@v2
18+
- name: Set up Python
19+
uses: actions/setup-python@v6
2020
with:
21-
auto-update-conda: true
22-
activate-environment: docs
23-
environment-file: environment.yml
21+
python-version: '3.14.2'
22+
23+
- name: Install dependencies with pip
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
2427
2528
- uses: oleksiyrudenko/gha-git-credentials@v2-latest
2629
with:

environment.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
mkdocs-material==9.6.15
22
mkdocstrings-python==1.16.12
33
mike==1.1.2
4-
setuptools
4+
setuptools<82.0.0

0 commit comments

Comments
 (0)