Skip to content

Commit 01b6d08

Browse files
committed
Fix workflow files for new min python version
1 parent dba5658 commit 01b6d08

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ibllib_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
max-parallel: 2
1919
matrix:
2020
os: ["windows-latest", "ubuntu-latest"]
21-
python-version: ["3.8", "3.11"]
21+
python-version: ["3.10", "3.12"]
2222
exclude:
2323
- os: windows-latest
24-
python-version: 3.8
24+
python-version: 3.10
2525
- os: ubuntu-latest
26-
python-version: 3.11
26+
python-version: 3.12
2727
steps:
2828
- uses: actions/checkout@v2
2929
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: '3.8'
21+
python-version: '3.10'
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip

ibllib/tests/qc/test_critical_reasons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_note_already_existing(self):
8282

8383
note = one.alyx.rest('notes', 'list', django=f'object_id,{eid}', no_cache=True)
8484
self.assertEqual(len(note), 1)
85-
self.assertNotEquals(original_note_id, note[0]['id'])
85+
self.assertNotEqual(original_note_id, note[0]['id'])
8686

8787
def test_guiinput_ins(self):
8888
eid = self.ins_id # probe id

0 commit comments

Comments
 (0)