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

Bump the all-minor-and-patch-dependency-updates group with 7 updates #251

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
4 changes: 2 additions & 2 deletions evolver/hardware/standard/pump.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def commit(self):
hz_a = [float(input.volume)] * 3
for solenoid, hz in enumerate(hz_a):
# solenoid is 1-indexed on hardware
cmd[pump * 3 + solenoid] = f"{hz}|{pump}|{solenoid+1}"
cmd[pump * 3 + solenoid] = f"{hz}|{pump}|{solenoid + 1}"
elif any(pump - i < 3 for i in self.ipp_pumps):
raise ValueError(f"pump slot {pump} reserved for IPP pump, cannot address as standard")
else:
Expand All @@ -99,7 +99,7 @@ def off(self):
cmd = [b"0"] * self.slots
for pump in self.ipp_pumps:
for solenoid in range(3):
cmd[pump * 3 + solenoid] = f"0|{pump}|{solenoid+1}".encode()
cmd[pump * 3 + solenoid] = f"0|{pump}|{solenoid + 1}".encode()
with self.serial as comm:
comm.communicate(SerialData(addr=self.addr, data=cmd))

Expand Down
2 changes: 1 addition & 1 deletion requirements/build.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
build==1.2.2.post1
setuptools==75.7.0
setuptools==75.8.0
setuptools_scm[toml]==8.1.0
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tox==4.23.2
tox==4.24.1
6 changes: 3 additions & 3 deletions requirements/prd.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
fastapi==0.115.6
numpy==2.2.1
fastapi==0.115.8
numpy==2.2.2
duckdb==1.1.3
pydantic==2.7.4
pydantic-settings==2.7.1
pyserial==3.5
uvicorn[standard]==0.34.0
scipy==1.15.0
scipy==1.15.1
4 changes: 2 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bandit==1.8.0
bandit==1.8.2
deepdiff==8.1.1
httpx==0.28.1
ruff==0.8.6
ruff==0.9.4
pytest==8.3.4
pytest-cov==6.0.0