summaryrefslogtreecommitdiffstats
path: root/.github/workflows/python-package.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 04:58:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 04:58:50 +0000
commit0391d056604458068132313730b9d36be055087b (patch)
tree04b24c25a8009dd1b45b83eaa8a8b86c8112163b /.github/workflows/python-package.yml
parentAdding upstream version 1.6.4. (diff)
downloadtreelib-upstream.tar.xz
treelib-upstream.zip
Adding upstream version 1.7.0.upstream/1.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/python-package.yml')
-rw-r--r--.github/workflows/python-package.yml25
1 files changed, 1 insertions, 24 deletions
diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml
index 5ffa075..fba950c 100644
--- a/.github/workflows/python-package.yml
+++ b/.github/workflows/python-package.yml
@@ -9,36 +9,13 @@ on:
branches: [ "master" ]
jobs:
- build-pre37:
-
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- python-version: ["2.7"]
-
- steps:
- - uses: actions/checkout@v3
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v3
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- if [ -f requirements-t-pre37.txt ]; then pip install -r requirements-t-pre37.txt; fi
- - name: Test with nosetests
- run: |
- ./scripts/testing.sh
-
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1"]
steps:
- uses: actions/checkout@v3