Skip to content

Commit 0c0274d

Browse files
Fixing mysql vulnerability and upgrading some code (utiasDSL#153)
1 parent f6b850e commit 0c0274d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
20-
pip install pytest
20+
python -m pip install pytest
2121
- name: Install package
2222
run: |
23-
pip install -e .
23+
python -m pip install -e .
2424
- name: Run Linting
2525
run: |
2626
pre-commit install

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ conda activate safe
5555
Install the `safe-control-gym` repository
5656

5757
```bash
58-
pip install --upgrade pip
59-
pip install -e .
58+
python -m pip install --upgrade pip
59+
python -m pip install -e .
6060
```
6161

6262
#### Note

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pre-commit = "^3.3.2"
3030
optuna = "^3.0"
3131
optuna-dashboard = "^0.9"
3232
mysql-connector-python = "8.0.33"
33-
pymysql = "1.0.3"
33+
pymysql = "1.1.1"
3434

3535
[tool.poetry.dev-dependencies]
3636

0 commit comments

Comments
 (0)