Skip to content

Commit f474835

Browse files
Remove extras install from workflows
1 parent a0b10c6 commit f474835

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/gh-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
python -m pip install --upgrade pip
2626
pip install flake8 pytest pytest-cov setuptools numpy
27-
pip install -e .[extras]
27+
pip install -e .
2828
pip install ray[rllib,debug]
2929
pip install tensorflow
3030
- name: Lint with flake8

Diff for: .github/workflows/install-from-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
pip install numpy
2626
- name: Install from PyPI
2727
run: |
28-
pip install mdp-playground[extras]
28+
pip install mdp-playground
2929
- name: Basic functionality test
3030
run: |
3131
run-mdpp-experiments --help

0 commit comments

Comments
 (0)