Skip to content

Commit fdadc88

Browse files
authored
Merge pull request #729 from bitcraze/rik/python310
Bump required Python version to 3.10
2 parents 80cfb4c + 8e518e3 commit fdadc88

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/installation/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ page_id: install
55

66
## Prerequisites
77

8-
This project requires Python 3.8 - 3.12.
8+
This project requires Python 3.10+.
99

1010
There are a few things to sort out on your machine before you can install the client. Please see the appropriate
1111
section depending on your environment.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
from pathlib import Path
1313

14-
if sys.version_info < (3, 8):
15-
raise "must use python 3.8 or greater"
14+
if sys.version_info < (3, 10):
15+
raise "must use python 3.10 or greater"
1616

1717

1818
def relative(lst, base=''):
@@ -93,7 +93,7 @@ def relative(lst, base=''):
9393
install_requires=['cflib>=0.1.26',
9494
'setuptools',
9595
'appdirs~=1.4.0',
96-
'pyzmq~=25.0',
96+
'pyzmq~=26.0',
9797
'pyqtgraph~=0.13',
9898
'PyYAML~=6.0.1',
9999
'numpy~=1.20',

0 commit comments

Comments
 (0)