Skip to content

Commit 036dea6

Browse files
authored
Merge pull request #48 from eadwinCode/injector_version_bump
trying to bump up injector version
2 parents c86b927 + e8613fe commit 036dea6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/test_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install core
2424
run: pip install "Django${{ matrix.django-version }}" pydantic
2525
- name: Install tests
26-
run: pip install pytest pytest-asyncio pytest-django injector==0.19.0 django-ninja asgiref contextlib2
26+
run: pip install pytest pytest-asyncio pytest-django injector>=0.19.0 django-ninja asgiref contextlib2
2727
- name: Test
2828
run: pytest
2929
codestyle:

ninja_extra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Django Ninja Extra - Class Based Utility and more for Django Ninja(Fast Django REST framework)"""
22

3-
__version__ = "0.18.2"
3+
__version__ = "0.18.4"
44

55
import django
66

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ classifiers = [
4545
requires = [
4646
"Django >= 2.2",
4747
"django-ninja >= 0.17.0",
48-
"injector == 0.19.0",
48+
"injector >= 0.19.0",
4949
"asgiref",
5050
"contextlib2"
5151
]
@@ -62,11 +62,11 @@ test = [
6262
"pytest-cov",
6363
"pytest-django",
6464
"pytest-asyncio",
65-
"black",
66-
"isort",
67-
"injector == 0.19.0",
68-
"flake8",
69-
"mypy==0.931",
65+
"mypy ==0.971",
66+
"flake8 >=3.8.3,<4.0.0",
67+
"black ==22.12.0",
68+
"isort >=5.0.6,<6.0.0",
69+
"injector >= 0.19.0",
7070
"django-stubs",
7171
]
7272
doc = [

0 commit comments

Comments
 (0)