From 0aa28d87a4d3ce11d3a20f5b3fd639cc33ce414d Mon Sep 17 00:00:00 2001 From: "Schmieder, Jacob" Date: Wed, 8 May 2024 09:59:37 +0000 Subject: [PATCH] fixed wrong syntax --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 3b47162..0e73d9a 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -46,7 +46,7 @@ jobs: pip install setuptools wheel - name: Build source distribution run: | - python3 -c "import os; print("ISRELEASED" in os.environ)" + python3 -c "import os; print('ISRELEASED' in os.environ)" python3 setup.py sdist - name: Store the distribution packages uses: actions/upload-artifact@v3