Skip to content

Commit 5c4f855

Browse files
authored
fix: version solving (#20)
1 parent 3dc03b1 commit 5c4f855

File tree

4 files changed

+277
-331
lines changed

4 files changed

+277
-331
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ jobs:
6767
run: poetry install --no-interaction
6868

6969
- name: Install sqlalchemy ${{ matrix.sqlalchemy-version }}
70-
run: poetry run pip install sqlalchemy==${{ matrix.sqlalchemy-version }}
70+
run: poetry add sqlalchemy==${{ matrix.sqlalchemy-version }}
7171

7272
- name: Install pydantic ${{ matrix.pydantic-version }}
73-
run: poetry run pip install pydantic==${{ matrix.pydantic-version }}
73+
run: poetry add pydantic==${{ matrix.pydantic-version }}
7474

7575
- name: Run tests
7676
run: poetry run pytest --cov-report=xml

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ _____
77
___
88
### Installation
99
```bash
10+
# without extras
1011
pip install dataclass-sqlalchemy-mixins
12+
13+
# with pydantic
14+
pip install dataclass-sqlalchemy-mixins[pydantic]
1115
```
1216
___
1317
### Description

0 commit comments

Comments
 (0)