Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 18, 2023
1 parent 80c6b52 commit 5af2f7f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
tag: ${{ github.event.release.tag_name }}
overwrite: true
file_glob: true

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: wheels_${{ github.event.release.tag_name }}.zip
tag: ${{ github.ref }}
tag: ${{ github.event.release.tag_name }}
overwrite: true

zip-asset-upload:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: release_${{ github.event.release.tag_name }}.zip
tag: ${{ github.ref }}
tag: ${{ github.event.release.tag_name }}
overwrite: true

publish-on-pypi:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Simplify some UI elements.
- Security improvements.
- Reduce the default LED intensity in `light_dark_cycle` from 50% to 5%. This is more appropriate for sparse cultures.
- Fixed a race condition when starting a hotspot with boot config.ini.

### 23.11.08

Expand Down
2 changes: 1 addition & 1 deletion pioreactor/background_jobs/growth_rate_calculating.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def scale_raw_observations(
f"Negative normalized value(s) observed: {scaled_signals}. Did your blank have inoculant in it?"
)
self.logger.debug(f"od_normalization_factors: {self.od_normalization_factors}")
self.logger.debug(f"od_blank: {self.od_blank}")
self.logger.debug(f"od_blank: {dict(self.od_blank)}")
return None

return scaled_signals
Expand Down

0 comments on commit 5af2f7f

Please sign in to comment.