From 88d826db8436d9db3337e20aa31e8fdd03b4af6d Mon Sep 17 00:00:00 2001 From: "Schmieder, Jacob" Date: Fri, 17 May 2024 13:57:10 +0000 Subject: [PATCH] install req from file --- .github/workflows/pypi.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index c810ea4..aa9edaf 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -42,7 +42,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install package run: | - python3 -m pip install -U --index-url https://test.pypi.org/simple/ scraibe>=0.1.3 + pip install -U setuptools + pip install -r requirements.txt + python3 -m pip install --no-deps --index-url https://test.pypi.org/simple/ scraibe>=0.1.3 # publish-to-pypi: