Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
Removal of StochasticDiffEq pin
Browse files Browse the repository at this point in the history
Removed the pinning of the StochasticDiffEq pin
  • Loading branch information
calvinp0 authored and mjohnson541 committed Feb 2, 2023
1 parent 10da9f5 commit 9bfc137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ conda activate $BENCHMARK_CONDA_ENV
export PYTHONPATH=$RMG_BENCHMARK:$PYTHONPATH
export PATH=$RMG_BENCHMARK:$PATH
python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()"
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); Pkg.add(PackageSpec(name="StochasticDiffEq",version="6.36.0")); using ReactionMechanismSimulator'
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator'
ln -sfn $(which python-jl) $(which python)
conda deactivate

conda activate $TESTING_CONDA_ENV
export PYTHONPATH=$RMG_TESTING:$PYTHONPATH
export PATH=$RMG_TESTING:$PATH
python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()"
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); Pkg.add(PackageSpec(name="StochasticDiffEq",version="6.36.0")); using ReactionMechanismSimulator'
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator'
ln -sfn $(which python-jl) $(which python)
conda deactivate

Expand Down

0 comments on commit 9bfc137

Please sign in to comment.