Skip to content

Commit 148c506

Browse files
authored
Merge branch 'master' into dependabot/pip/mypy-1.11.2
2 parents 49258b2 + fa0ad93 commit 148c506

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/test_full.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,7 @@ jobs:
3737
run: pip install flit
3838
- name: Install Dependencies
3939
run: make install
40-
- name: Black
41-
run: black --check zform tests
42-
- name: isort
43-
run: isort --check zform tests
44-
- name: Flake8
45-
run: flake8 zform tests
40+
- name: Ruff Linting Check
41+
run: ruff check zform tests
4642
# - name: mypy
4743
# run: mypy zform

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ classifiers = [
4040
]
4141

4242
dependencies = [
43-
"ellar >= 0.8.2"
43+
"ellar >= 0.8.4",
44+
'python-multipart >= 0.0.5'
4445
]
4546

4647
[project.urls]

requirements-tests.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
autoflake
22
httpx==0.23.3
33
mypy == 1.11.2
4+
pydantic[email]
45
pytest >=7.1.3,<9.0.0
56
pytest-asyncio
67
pytest-cov >=2.12.0,<6.0.0
7-
ruff ==0.6.1
8+
ruff ==0.6.6

0 commit comments

Comments
 (0)