Skip to content
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ mscl_release_assets/
# Exclude build downloaded mscl files:
src/python_mscl/mscl.py
src/python_mscl/_mscl.so
src/python_mscl/mscl.pyd
src/python_mscl/_mscl.pyd
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# python-mscl

[![PyPI Downloads](https://static.pepy.tech/badge/python-mscl/week)](https://pepy.tech/projects/python-mscl)

Unofficial Python package for the [Microstrain Communication Library](https://github.com/LORD-MicroStrain/MSCL/tree/master).

This library just makes it so that we can install the MSCL library using pip, and directly provides the wheels!
Expand Down Expand Up @@ -43,6 +45,7 @@ The below steps assume you have [`uv`](https://docs.astral.sh/uv/) installed.
version and architecture. The wheels will be placed in the `dist/` directory.

Notes for me, the maintainer:

5. Make sure that the constants in `constants.py` are updated, and that the MSCL repo still follows their
versioning system. If not, update rest of the files accordingly.

Expand Down
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ReleaseAsset(NamedTuple):


# Keep this the same as the one in `hatch_build.py`!
MSCL_VERSION = "v67.0.1"
MSCL_VERSION = "v67.1.0"
"""The mscl version to extract from the `ASSET_DIRECTORY`. The
downloader will download the latest version despite this version number."""

Expand Down
2 changes: 1 addition & 1 deletion hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from hatchling.builders.hooks.plugin.interface import BuildHookInterface

# This is specified here instead of in the constants since we get import errors:
MSCL_VERSION = "v67.0.1"
MSCL_VERSION = "v67.1.0"
"""The mscl version to build the wheels from."""

BUILD_ARCH = os.getenv("BUILD_ARCH", "false")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python-mscl"
version = "67.0.1.0"
version = "67.1.0.0"
description = "Easy to install python wrapper for the MSCL library."
readme = "README.md"
authors = [
Expand Down
Loading