File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
17
17
- name : Install dependencies
18
18
run : |
19
19
python -m pip install --upgrade pip
20
- pip install pytest
20
+ python -m pip install pytest
21
21
- name : Install package
22
22
run : |
23
- pip install -e .
23
+ python -m pip install -e .
24
24
- name : Run Linting
25
25
run : |
26
26
pre-commit install
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ conda activate safe
55
55
Install the ` safe-control-gym ` repository
56
56
57
57
``` bash
58
- pip install --upgrade pip
59
- pip install -e .
58
+ python -m pip install --upgrade pip
59
+ python -m pip install -e .
60
60
```
61
61
62
62
#### Note
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ pre-commit = "^3.3.2"
30
30
optuna = " ^3.0"
31
31
optuna-dashboard = " ^0.9"
32
32
mysql-connector-python = " 8.0.33"
33
- pymysql = " 1.0.3 "
33
+ pymysql = " 1.1.1 "
34
34
35
35
[tool .poetry .dev-dependencies ]
36
36
You can’t perform that action at this time.
0 commit comments