diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 6e3d791..a68c8d3 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -13,10 +13,11 @@ jobs: - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install setuptools wheel twine - name: Build and publish env: