Skip to content

Commit 9738fa7

Browse files
Adding explicit dependency on earlier version of pycddlib
1 parent c8c5c75 commit 9738fa7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
run_tests:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Set up Python
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: '3.10'
1717
- name: Install dependencies

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
repos:
1111
- repo: https://github.com/pre-commit/pre-commit-hooks
12-
rev: v4.6.0
12+
rev: v5.0.0
1313
hooks:
1414
- id: check-ast
1515
- id: check-yaml
@@ -45,7 +45,7 @@ repos:
4545
files: (^tests/|^safe_control_gym/math_and_models/transformations.py)
4646

4747
- repo: https://github.com/PyCQA/flake8
48-
rev: 7.0.0
48+
rev: 7.1.1
4949
hooks:
5050
- id: flake8
5151
name: flake8_default

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ casadi = "^3.6.0"
2222
pybullet = "^3.2.0"
2323
numpy = "^1.22.1"
2424
cvxpy = "^1.1.18"
25+
pycddlib = "^2.1.7"
2526
pytope = "^0.0.4"
2627
Mosek = "^10.0.18"
2728
termcolor = "^1.1.0"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'pybullet',
1919
'numpy',
2020
'cvxpy',
21+
'pycddlib',
2122
'pytope',
2223
'Mosek',
2324
'termcolor',

0 commit comments

Comments
 (0)