Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify version requirement and state recommended python version in readme #38

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading