-
-
Notifications
You must be signed in to change notification settings - Fork 164
Add requirements-reference.txt #871
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
MakisH
merged 11 commits into
precice:develop
from
PranjalManhgaye:fix-610-python-dependency-versions-clean
Jul 15, 2026
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6e583b7
Add tutorial Python dependency reference manifest for #610
PranjalManhgaye 626dd48
Update 610.md
PranjalManhgaye f08a2cb
Fix markdownlint MD012 in README.md
PranjalManhgaye bd584b7
Merge remote-tracking branch 'upstream/develop' into fix-610-python-d…
PranjalManhgaye 6b5e773
Address #871 review: per-participant requirements-reference files
PranjalManhgaye 2a89e82
Merge branch 'develop' into fix-610-python-dependency-versions-clean
MakisH 1b5b921
Merge branch 'develop' into fix-610-python-dependency-versions-clean
MakisH 87e0a80
Address #871 review: update-requirements-reference CLI and CI checks
PranjalManhgaye 69ce9fb
Merge branch 'develop' into fix-610-python-dependency-versions-clean
MakisH b7fdb63
Minor language fixes in tools/releasing/README.md
MakisH bd97bf4
Update the micro-manager requirements-reference.txt
MakisH 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
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 |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| name: Check requirements-reference | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| - develop | ||
| paths: | ||
| - '**/requirements.txt' | ||
| - '**/requirements-reference.txt' | ||
| - tools/releasing/update-requirements-reference.py | ||
| - tools/releasing/requirements.txt | ||
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout the repository | ||
| uses: actions/checkout@v7 | ||
| - name: Setup python | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: '3.10' | ||
| - name: Install packaging | ||
| run: pip install -r tools/releasing/requirements.txt | ||
| - name: Check requirements-reference.txt files exist | ||
| if: github.base_ref == 'develop' | ||
| run: python3 tools/releasing/update-requirements-reference.py --check | ||
| - name: Check requirements-reference.txt files are up to date | ||
| if: github.base_ref == 'master' | ||
| run: python3 tools/releasing/update-requirements-reference.py --check --fail-on-outdated |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| - Add loose version constraints to tutorial `requirements.txt` files and sibling `requirements-reference.txt` pins generated from PyPI via `tools/releasing/update-requirements-reference.py`, with a CI check that requires reference files on `develop` and up-to-date pins on release PRs to `master` ([#871](https://github.com/precice/tutorials/pull/871)). |
10 changes: 10 additions & 0 deletions
10
channel-transport-particles/fluid-nutils/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: channel-transport-particles/fluid-nutils/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| setuptools | ||
13 changes: 13 additions & 0 deletions
13
channel-transport-reaction/chemical-fenics/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: channel-transport-reaction/chemical-fenics/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsprecice==2.3.0 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
13 changes: 13 additions & 0 deletions
13
channel-transport-reaction/fluid-fenics/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: channel-transport-reaction/fluid-fenics/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsprecice==2.3.0 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: channel-transport/fluid-nutils/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| setuptools |
10 changes: 10 additions & 0 deletions
10
channel-transport/transport-nutils/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: channel-transport/transport-nutils/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice >=3.2 # Remeshing support is available since preCICE version 3.2 | ||
| setuptools |
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: elastic-tube-1d/fluid-python/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| matplotlib==3.11.0 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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,3 +1,3 @@ | ||
| matplotlib | ||
| matplotlib>=3,<4 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 |
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 |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: elastic-tube-1d/solid-python/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: elastic-tube-3d/solid-fenics/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| fenicsprecice==2.3.0 | ||
| numpy==1.26.4 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
8 changes: 8 additions & 0 deletions
8
flow-around-controlled-moving-cylinder/controller-fmi/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-around-controlled-moving-cylinder/controller-fmi/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 |
2 changes: 1 addition & 1 deletion
2
flow-around-controlled-moving-cylinder/controller-fmi/requirements.txt
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,2 +1,2 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| fmiprecice~=0.2 |
8 changes: 8 additions & 0 deletions
8
flow-around-controlled-moving-cylinder/solid-python/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-around-controlled-moving-cylinder/solid-python/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| numpy==1.26.4 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/fluid-su2/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
4 changes: 0 additions & 4 deletions
4
flow-over-heated-plate/plot-final-interface-temperature-requirements.txt
This file was deleted.
Oops, something went wrong.
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
9 changes: 9 additions & 0 deletions
9
flow-over-heated-plate/plot-final-interface-temperature/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/plot-final-interface-temperature/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| matplotlib==3.11.0 | ||
| vtk==9.6.2 |
3 changes: 3 additions & 0 deletions
3
flow-over-heated-plate/plot-final-interface-temperature/requirements.txt
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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| numpy >1, <2 | ||
| matplotlib>=3,<4 | ||
| vtk>=9,<10 |
8 changes: 8 additions & 0 deletions
8
flow-over-heated-plate/solid-dunefem/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-dunefem/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| dune-fem==2.12.0.2 | ||
| pyprecice==3.4.0 |
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,2 +1,2 @@ | ||
| dune-fem>=2.11 # Known to work with 2.11.0.5, 2.12.0.2 | ||
| dune-fem>=2.11 | ||
| pyprecice~=3.0 |
13 changes: 13 additions & 0 deletions
13
flow-over-heated-plate/solid-fenics/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-fenics/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| fenicsprecice==2.3.0 | ||
| numpy==1.26.4 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
9 changes: 9 additions & 0 deletions
9
flow-over-heated-plate/solid-fenicsx/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-fenicsx/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsxprecice==1.0.1 | ||
| mpi4py==4.1.2 |
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,3 +1,3 @@ | ||
| numpy | ||
| fenicsxprecice | ||
| numpy >1, <2 | ||
| fenicsxprecice~=1.0 | ||
| mpi4py>=3 |
10 changes: 10 additions & 0 deletions
10
flow-over-heated-plate/solid-nutils/requirements-reference.txt
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-nutils/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
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,4 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 |
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: oscillator-overlap/solver-python/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 | ||
| scipy==1.18.0 |
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,3 +1,3 @@ | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| scipy | ||
| scipy>=1.10,<2 | ||
|
MakisH marked this conversation as resolved.
|
||
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: oscillator/mass-left-fmi/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
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,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 | ||
|
MakisH marked this conversation as resolved.
|
||
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: oscillator/mass-right-fmi/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
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,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 |
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: oscillator/solver-fmi/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
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,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 |
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/update-requirements-reference.py — do not edit manually. | ||
| # Source: oscillator/solver-python/requirements.txt | ||
| # Generated: 2026-07-13T16:48:40Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 | ||
| scipy==1.18.0 |
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,3 +1,3 @@ | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| scipy | ||
| scipy>=1.10,<2 |
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.
Uh oh!
There was an error while loading. Please reload this page.