Skip to content

Commit

Permalink
python 3.12 compatibility: install setuptools if missing
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jun 11, 2024
1 parent a0a68aa commit 94c3ffc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup-depiction/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
- name: Install bfabricPy
shell: bash
run: |
pip install uv
pip install uv setuptools
uv pip install --system ".[dev,testing]"
- name: Print installed packages
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Install the `pyproject.toml` in editable mode, tested with [uv](https://github.c

```bash
uv venv
uv pip install setuptools
uv pip install -e ".[dev,testing]"
```

Expand All @@ -32,6 +33,7 @@ uv pip install -e ".[dev,testing]"
```bash
conda create -n exp-2024-05-depiction python=3.12
conda activate exp-2024-05-depiction
pip install setuptools
pip install -e ".[dev,testing]"
```

Expand Down

0 comments on commit 94c3ffc

Please sign in to comment.