Skip to content

Commit

Permalink
Merge pull request #38 from SweepMe/doc-pythonversion
Browse files Browse the repository at this point in the history
Specify version requirement and state recommended python version in readme
  • Loading branch information
fk3 authored Jul 29, 2024
2 parents 1729bf3 + f376599 commit 2f184d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ instruments is handled via instrument drivers ("Device Classes"), that are pytho

## Installation
So far, only Windows is supported. Other systems might work as well but probably some modifications are needed.
We recommend to use Python 3.9 64bit, as this is the python version and architecture targeted by us. In addition,
several drivers in our [instrument driver repository](https://github.com/SweepMe/instrument-drivers) bring their own
dependencies which are bundled for Python 3.9.

Use the command line (cmd) to install/uninstall:

### install
pip install pysweepme

### install with force version
pip install pysweepme==1.5.5.45
pip install pysweepme==1.5.6.10

### uninstall
pip uninstall pysweepme
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pysweepme"
description = "Load SweepMe! instrument drivers in your own python projects."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.9,<3.12"
license = { file = "LICENSE.txt" }
maintainers = [
{ name = "SweepMe! GmbH", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion src/pysweepme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# SOFTWARE.


__version__ = "1.5.6.10"
__version__ = "1.5.6.11"

import sys

Expand Down

0 comments on commit 2f184d0

Please sign in to comment.