Skip to content

Commit cbb3df0

Browse files
committed
pin test requirements, trim lower bound on Python version for click
1 parent 47dbe26 commit cbb3df0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/debug-wheel-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
strategy:
5656
matrix:
57-
python-version: ['3.9']
57+
python-version: ['3.10']
5858
steps:
5959
- uses: actions/checkout@v3
6060
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/mse_tool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
python-version: ['3.9']
16+
python-version: ['3.11']
1717
os: [ubuntu-latest, windows-latest]
1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/pythonpublish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build wheels
3737
run: python -m cibuildwheel --output-dir dist/
3838
env:
39-
CIBW_BUILD: "cp39* cp310* cp311* cp312*"
39+
CIBW_BUILD: "cp310* cp311* cp312*"
4040
CIBW_SKIP: "*_i686 *win32 *musllinux* pp*"
4141
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
4242
CIBW_TEST_REQUIRES: "pytest"

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, windows-latest]
14-
python-version: ['3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms_peak_picker >= 0.1.41
88
brain-isotopic-distribution >= 1.5.8
99
dill
1010
python-idzip >=0.3.2
11-
click
11+
click >= 8.2
1212
h5py
1313
hdf5plugin
1414
pyzstd

0 commit comments

Comments
 (0)