Skip to content

Commit

Permalink
Do not use fixed version of pydantic 1.7.1 (#2)
Browse files Browse the repository at this point in the history
* Update pydantic to 1.*

* packages in pyproject.toml

* Updated minimal python version to 3.9

* Changed supported python versions and fixed CI/CD

* Updated python version matrix
  • Loading branch information
Sibyx authored Aug 24, 2023
1 parent a808e95 commit db42b3a
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 337 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8]
python-version: [3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m pip install poetry setuptools
poetry install
- name: Lint with flake8
run: |
poetry run pytest . -v --flake8
poetry run flake8 .
- name: Test with pytest
run: |
poetry run pytest . -v
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.6.0 : 2023-08-24

- 🐸 Maintenance release (changed pydantic dependencies)

## 0.5.0 : 2021-08-27

- 🌵 Prefer resolvers to model property
Expand Down
Loading

0 comments on commit db42b3a

Please sign in to comment.