Skip to content

Commit 86c1e1d

Browse files
authored
Merge pull request #699 from bitcraze/ataffanel/issue687
Fix client on Python 3.12
2 parents 3d4ff90 + c1a95f5 commit 86c1e1d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525

26-
- name: Set up Python 3.8
26+
- name: Set up Python 3.12
2727
uses: actions/setup-python@v4
2828
with:
29-
python-version: 3.8
29+
python-version: 3.12
3030

3131
- name: Check build and install
3232
run: |

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,13 @@ def relative(lst, base=''):
9191
},
9292

9393
install_requires=['cflib>=0.1.25.1',
94+
'setuptools',
9495
'appdirs~=1.4.0',
9596
'pyzmq~=25.0',
9697
'pyqtgraph~=0.13',
9798
'PyYAML~=6.0.1',
9899
'numpy~=1.20',
99-
'vispy~=0.13.0',
100+
'vispy~=0.13',
100101
'pyserial~=3.5',
101102
'pyqt6~=6.5',
102103
'PyQt6-sip~=13.5',

0 commit comments

Comments
 (0)