Skip to content

Commit 2caa75b

Browse files
committed
Moved to test environment v5
1 parent 206a72e commit 2caa75b

6 files changed

+20
-20
lines changed

.github/workflows/python_package_mac_recommended.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
fail-fast: false
88
matrix:
99
# older version do not work (blist compile fails); but they work with original blist package
10-
python-version: ["3.9","3.10","3.11"]
10+
python-version: ["3.9","3.10","3.11","3.12"]
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Switch to Current Branch
@@ -31,7 +31,7 @@ jobs:
3131
#python -m pytest ./tests
3232
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3333
- name: Upload pytest test results
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: pytest-results-${{ matrix.python-version }}.xml
3737
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/python_package_mac_standard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
matrix:
99
python-version: ["3.8", "3.9","3.10","3.11"]
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Switch to Current Branch
@@ -25,7 +25,7 @@ jobs:
2525
#python -m pytest ./tests
2626
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
2727
- name: Upload pytest test results
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: pytest-results-${{ matrix.python-version }}.xml
3131
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/python_package_recommended.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
matrix:
99
python-version: ["3.7","3.8", "3.9","3.10","3.11"] #blist compile not working on python 3.10
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Switch to Current Branch
@@ -29,7 +29,7 @@ jobs:
2929
#python -m pytest ./tests
3030
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3131
- name: Upload pytest test results
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@v5
3333
with:
3434
name: pytest-results-${{ matrix.python-version }}.xml
3535
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/python_package_standard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
matrix:
99
python-version: ["3.7","3.8", "3.9","3.10","3.11"]
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Switch to Current Branch
@@ -25,7 +25,7 @@ jobs:
2525
#python -m pytest ./tests
2626
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
2727
- name: Upload pytest test results
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: pytest-results-${{ matrix.python-version }}.xml
3131
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/python_package_win_recommended.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ["3.7","3.8", "3.9","3.10", "3.11"] #blist compile not working on python 3.10
9+
python-version: ["3.7","3.8", "3.9","3.10", "3.11", "3.12"] #blist compile not working on python 3.10
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Switch to Current Branch
@@ -30,7 +30,7 @@ jobs:
3030
#python -m pytest ./tests
3131
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3232
- name: Upload pytest test results
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v5
3434
with:
3535
name: pytest-results-${{ matrix.python-version }}.xml
3636
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/python_package_win_standard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
matrix:
99
python-version: ["3.7","3.8", "3.9","3.10","3.11"]
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Switch to Current Branch
@@ -25,7 +25,7 @@ jobs:
2525
#python -m pytest ./tests
2626
pytest ./tests/ --show-capture=all --capture=tee-sys --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
2727
- name: Upload pytest test results
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: pytest-results-${{ matrix.python-version }}.xml
3131
path: junit/test-results-${{ matrix.python-version }}.xml

0 commit comments

Comments
 (0)