Skip to content

Commit

Permalink
Merge pull request #729 from bitcraze/rik/python310
Browse files Browse the repository at this point in the history
Bump required Python version to 3.10
  • Loading branch information
gemenerik authored Oct 16, 2024
2 parents 80cfb4c + 8e518e3 commit fdadc88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ page_id: install

## Prerequisites

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

There are a few things to sort out on your machine before you can install the client. Please see the appropriate
section depending on your environment.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

from pathlib import Path

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


def relative(lst, base=''):
Expand Down Expand Up @@ -93,7 +93,7 @@ def relative(lst, base=''):
install_requires=['cflib>=0.1.26',
'setuptools',
'appdirs~=1.4.0',
'pyzmq~=25.0',
'pyzmq~=26.0',
'pyqtgraph~=0.13',
'PyYAML~=6.0.1',
'numpy~=1.20',
Expand Down

0 comments on commit fdadc88

Please sign in to comment.