File tree Expand file tree Collapse file tree 4 files changed +277
-331
lines changed Expand file tree Collapse file tree 4 files changed +277
-331
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ jobs:
67
67
run : poetry install --no-interaction
68
68
69
69
- name : Install sqlalchemy ${{ matrix.sqlalchemy-version }}
70
- run : poetry run pip install sqlalchemy==${{ matrix.sqlalchemy-version }}
70
+ run : poetry add sqlalchemy==${{ matrix.sqlalchemy-version }}
71
71
72
72
- name : Install pydantic ${{ matrix.pydantic-version }}
73
- run : poetry run pip install pydantic==${{ matrix.pydantic-version }}
73
+ run : poetry add pydantic==${{ matrix.pydantic-version }}
74
74
75
75
- name : Run tests
76
76
run : poetry run pytest --cov-report=xml
Original file line number Diff line number Diff line change 7
7
___
8
8
### Installation
9
9
``` bash
10
+ # without extras
10
11
pip install dataclass-sqlalchemy-mixins
12
+
13
+ # with pydantic
14
+ pip install dataclass-sqlalchemy-mixins[pydantic]
11
15
```
12
16
___
13
17
### Description
You can’t perform that action at this time.
0 commit comments