Skip to content

Commit

Permalink
maybe this helps the normalization problem I was seeing?
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Feb 27, 2024
1 parent 3d0dcbc commit 7bd2f5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: 3.11
- name: 🏗 Install build dependencies
run: |
python -m pip install wheel build --user
python -m pip install -U wheel build setuptools --user
- name: 🔨 Build a binary wheel and a source tarball
run: |
python -m build --wheel
Expand Down
4 changes: 2 additions & 2 deletions pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import os

# pioreactor version
# Append "dev" if a dev version
# Append "dev0" if a dev version
# Append "rc0" if a rc version
# No zero padding!
__version__ = "24.2.26"
__version__ = "24.2.26dev0"


def get_hardware_version() -> tuple[int, int] | tuple[int, int, str]:
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ JSON-log-formatter==0.5.1
colorlog==6.7.0
msgspec==0.18.5
diskcache==5.6.3
wheel==0.41.2
wheel==0.42.0
crudini==0.9.5
# lgpio; platform_machine!='armv7l' and platform_machine!='armv6l' # preinstalled on base image
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"colorlog==6.7.0",
"msgspec==0.18.5",
"diskcache==5.6.3",
"wheel==0.41.2",
"wheel==0.42.0",
"crudini==0.9.5",
# "lgpio; platform_machine!='armv7l' and platform_machine!='armv6l'", # primarily available with base image, or via apt-get install python3-lgpio
]
Expand Down

0 comments on commit 7bd2f5e

Please sign in to comment.