Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8ee3e6a

Browse files
committedNov 18, 2023
install libxml2-dev libxslt-dev for lxml
1 parent 4de7028 commit 8ee3e6a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎.github/workflows/.hatch-run.yml

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
runs-on: ${{ matrix.runs-on }}
4040
steps:
4141
- uses: actions/checkout@v2
42+
- name: Install System Dependencies
43+
run: |
44+
sudo apt-get update
45+
sudo apt-get install -y libxml2-dev libxslt-dev
4246
- uses: actions/setup-node@v2
4347
with:
4448
node-version: "14.x"

‎tasks.py

-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,6 @@ def install_poetry_project(context: Context, path: Path) -> None:
447447
packages_to_install = [
448448
f"{package['name']}=={package['version']}" for package in poetry_lock["package"]
449449
]
450-
context.run("pip install setuptools") # needed by some packages during install
451450
context.run("pip install -e .")
452451
context.run(f"pip install {' '.join(packages_to_install)}")
453452

0 commit comments

Comments
 (0)
Please sign in to comment.