From bbfd131a06a2b86c296306db3e58914a46549c17 Mon Sep 17 00:00:00 2001 From: Andrew Katz Date: Thu, 16 Jul 2020 19:40:25 -0400 Subject: [PATCH] Fix github action --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9ce02653..41dfe04b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -22,11 +22,11 @@ jobs: python -m pip install --upgrade pip pip install . - name: Create Examples - run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py + run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py -generate - name: Upload examples, demos, and tutorials uses: actions/upload-artifact@v2 with: name: generated path: | examples/ - tutorials/ \ No newline at end of file + tutorial/ \ No newline at end of file