-
Notifications
You must be signed in to change notification settings - Fork 0
Release v0.5.0: Stabilize JAX/Diffrax workflows and merge global into main #71
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
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
bfc2f6e
add: frontend plan
bibymaths 4c042d8
add: frontend plan renamed
bibymaths b01db87
Standardize dashboard-ready output contract
bibymaths e08ad03
Add dashboard result browser
bibymaths 5af71a2
Add dashboard CLI launcher
bibymaths 9c0d76b
Add dashboard upload and configuration UI
bibymaths 992d58d
Integrate workflow-specific dashboard panels
bibymaths fa8ba1b
Add dashboard tests and documentation
bibymaths b3234ec
Fix networkmodel custom config handling
bibymaths 9565a25
Fix dashboard input extension validation
bibymaths 5604439
Fix ProtWise custom config handling
bibymaths 63fb6bb
Add dashboard user, developer, and troubleshooting guides
bibymaths 9aafe61
Fix dashboard result discovery for reports and child runs
bibymaths 95f1b82
Restrict dashboard config inputs to TOML
bibymaths b30ecc0
Serialize run metadata with JSON-safe arrays
bibymaths b1e65cb
Fix advanced analysis dashboard commands
bibymaths ac87e70
Merge pull request #67 from bibymaths/codex/standardize-dashboard-rea…
bibymaths 3898b16
fixed: console display, posterior log, workflow testing for frontend
bibymaths 4cced1f
fixed the frontend no code dashboard, testing networmodel and protwis…
bibymaths 4a037b6
add backward alias for old pymooo results to display in legacy mode a…
bibymaths 0a20779
fix: cached rhs in model ode solving, and forward simulation script
bibymaths 519e9de
fix: formatting python code
bibymaths 310a225
add: density plots for posterior with gaussian smoothing
bibymaths 5140ccf
fix: directories path
bibymaths e2e3016
fix: posterior params conversion fix
bibymaths ab909f2
fix: network sweep and forward simulation
bibymaths 25c635e
fixing: phosphosite dynamics 4th panel in forward simulation
bibymaths 84a734a
Fix forward phosphosite ODE panel
bibymaths 98769f7
Merge pull request #68 from bibymaths/codex/fix-phosphosite-state-dyn…
bibymaths 70887de
fixed: phosphosite dynamics 4th panel in forward simulation & data fi…
bibymaths 3ba6ab1
chore: update changelog and docs config file
bibymaths a845fec
add: memory issue fixing
bibymaths 1cb05b3
Make combinatorial model memory safe
bibymaths bcc3213
Fix combinatorial S-rate export cache shape
bibymaths ca663d5
Merge pull request #69 from bibymaths/codex/implement-memory-safe-fix…
bibymaths 0504c1f
fix: combinatorial model state phase explosion down to O(1) runtime, …
bibymaths b931c96
fix: ambiguity in model loading for forward simulation-KO/WT dashboard
bibymaths 159063a
done: made a project presentation using the sample results.
bibymaths bb9c6c8
chore and fix: cleanup config file, fix mrna modality missing scenari…
bibymaths 078c0c0
updated: changelog, organic testing, publishing workflow for github a…
bibymaths 5a992a7
Defer ODE input validation until runtime
bibymaths a3724c9
Make imports safe with empty output paths
bibymaths 9649ebe
Merge pull request #70 from bibymaths/codex/fix-import-time-issues-wi…
bibymaths 33055da
add: coverage, update readme with workflow, extension planning for fu…
bibymaths cef449e
bump to v0.5.0
bibymaths 490a294
updated changelog before PR and release v0.5.0
bibymaths File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,58 @@ | ||
| name: Publish to PyPI | ||
| name: Create GitHub Release | ||
|
|
||
| on: | ||
| release: | ||
| types: [ created ] | ||
| push: | ||
| tags: | ||
| - "v*" | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| build-and-publish: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v4 | ||
| - name: Set up Pixi | ||
| uses: prefix-dev/setup-pixi@v0.9.3 | ||
| with: | ||
| python-version: '3.x' | ||
| pixi-version: latest | ||
| cache: true | ||
|
|
||
| - name: Install Pixi environment | ||
| run: pixi install | ||
|
|
||
| - name: Run tests | ||
| run: | | ||
| pixi run test || echo "No Pixi test task configured; skipping tests." | ||
|
|
||
| - name: Create release archive | ||
| run: | | ||
| mkdir -p release_assets | ||
|
|
||
| git archive \ | ||
| --format=tar.gz \ | ||
| --prefix=phoskintime-${GITHUB_REF_NAME}/ \ | ||
| -o release_assets/phoskintime-${GITHUB_REF_NAME}.tar.gz \ | ||
| HEAD | ||
|
|
||
| - name: Install Poetry | ||
| - name: Copy reproducibility files | ||
| run: | | ||
| curl -sSL https://install.python-poetry.org | python3 - | ||
| echo "$HOME/.local/bin" >> $GITHUB_PATH | ||
| cp pixi.toml release_assets/ | ||
| if [ -f pixi.lock ]; then cp pixi.lock release_assets/; fi | ||
| if [ -f README.md ]; then cp README.md release_assets/; fi | ||
| if [ -f LICENSE ]; then cp LICENSE release_assets/; fi | ||
| if [ -f CITATION.cff ]; then cp CITATION.cff release_assets/; fi | ||
| if [ -f .zenodo.json ]; then cp .zenodo.json release_assets/; fi | ||
|
|
||
| - name: Build and publish | ||
| - name: Create GitHub release and upload assets | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | | ||
| poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} | ||
| poetry publish --build | ||
| gh release create "$GITHUB_REF_NAME" \ | ||
| release_assets/* \ | ||
| --title "$GITHUB_REF_NAME" \ | ||
| --generate-notes | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the tag-release workflow, this
|| echomakes the test step succeed for any non-zeropixi run testexit, including real pytest failures and the default-environment case where pytest is not installed. Because the archive andgh release createsteps run unconditionally after this, a broken tag can still publish a GitHub release instead of stopping at the test gate.Useful? React with 👍 / 👎.