From 7202407c6f1f3866adce67ee6e78bde34b9cdb24 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Mon, 21 Jun 2021 02:15:37 +0200 Subject: [PATCH] Use install_requires for python dependencies --- .github/workflows/python.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 3e5bb30..ed7cdd2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,8 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install dependencies - run: sudo apt-get install gettext python3 python3-packaging python3-gpg python3-pyqt5 python3-requests python3-socks + - name: Install system dependencies + run: sudo apt-get install gettext python3 + - name: Install python dependencies + run: sudo pip3 install . - name: Build torbrowser-launcher run: python3 setup.py build - name: Install torbrowser-launcher -- 2.44.0