From e5e4a19bf2a227a0fb933b39763de21fc679e300 Mon Sep 17 00:00:00 2001 From: nhuet Date: Fri, 15 Nov 2024 10:25:05 +0100 Subject: [PATCH] Stop installing github version of pyRDDLGym-gurobi in github ci/cd (#440) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 166e7ba42f..b2f0c5adf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -662,9 +662,9 @@ jobs: arch=$(uname -m) wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*macos*${arch}.whl) if [ "$python_version" = "3.12" ]; then - pip install ${wheelfile}[all] pytest "pygame>=2.5" optuna "cffi>=1.17" "git+https://github.com/pyrddlgym-project/pyRDDLGym-gurobi" + pip install ${wheelfile}[all] pytest "pygame>=2.5" optuna "cffi>=1.17" else - pip install ${wheelfile}[all] pytest gymnasium[classic-control] optuna "git+https://github.com/pyrddlgym-project/pyRDDLGym-gurobi" + pip install ${wheelfile}[all] pytest gymnasium[classic-control] optuna fi - name: Test with pytest @@ -762,9 +762,9 @@ jobs: python_version=${{ matrix.python-version }} wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*manylinux*.whl) if [ "$python_version" = "3.12" ]; then - pip install ${wheelfile}[all] pytest "pygame>=2.5" "cffi>=1.17" docopt commonmark optuna "git+https://github.com/pyrddlgym-project/pyRDDLGym-gurobi" + pip install ${wheelfile}[all] pytest "pygame>=2.5" "cffi>=1.17" docopt commonmark optuna else - pip install ${wheelfile}[all] pytest gymnasium[classic-control] docopt commonmark optuna "git+https://github.com/pyrddlgym-project/pyRDDLGym-gurobi" + pip install ${wheelfile}[all] pytest gymnasium[classic-control] docopt commonmark optuna fi - name: Test with pytest