Skip to content

Commit f5aa47a

Browse files
committed
take 11
1 parent b7a08ef commit f5aa47a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,22 +255,24 @@ jobs:
255255
- run: python -m pip install virtualenv
256256
- run: python -m virtualenv venv_test
257257
- run:
258+
name: Install Python dependencies
258259
command: |
259260
source venv_test/bin/activate
260261
python -m pip install -U pip setuptools wheel "numpy" "pandas" "scipy" "pytest"
261262
- run:
263+
name: Install Grid2op
262264
command: |
263265
source venv_test/bin/activate
264266
python -m pip install -e .[powermodels]
265267
pip freeze
266268
- run:
269+
name: Install Julia and power software
267270
command: |
268271
source venv_test/bin/activate
269272
./utils/install_julia.sh 1.10.4
270273
python -m pip install julia
271274
python ./utils/install_pycall.py
272-
julia -e 'using Pkg; Pkg.add(["Ipopt", "PowerModels", "PyCall"])'
273-
julia -e 'using Pkg; Pkg.add(url="https://github.com/loriab/PandaModels.jl", rev="update_pm")'
275+
julia -e 'using Pkg; Pkg.add([Pkg.PackageSpec(;name="Ipopt"), Pkg.PackageSpec(;name="PowerModels", version="0.21.3"), Pkg.PackageSpec(;name="PyCall"), Pkg.PackageSpec(;url="https://github.com/loriab/PandaModels.jl", rev="update_pm")])'
274276
- run:
275277
name: Environment information
276278
command: |

0 commit comments

Comments
 (0)