Skip to content

Commit 3e7d8e5

Browse files
committed
install requirements from setup.py
1 parent bfdd8a9 commit 3e7d8e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/debian.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
run: |
3939
cd deb_dist/
4040
sudo apt-get install ./archivebox*.deb
41-
python3 -m pip install "django==3.1.8"
41+
python3 -c 'from distutils.core import run_setup; result = run_setup("./setup.py", stop_after="init"); print("\n".join(result.install_requires + result.extras_require["sonic"]))' > ./requirements.txt
42+
python3 -m pip install -r ./requirements.txt
4243
archivebox --version
4344
# sudo python3 -m pip install --upgrade --ignore-installed .
4445

0 commit comments

Comments
 (0)