Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
python -m pip install --upgrade pip poetry pre-commit
python -m pip install --upgrade pip poetry==1.8.2 pre-commit
poetry config virtualenvs.create false --local
- name: Install dependencies
run: poetry install --all-extras
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
python -m pip install --upgrade pip poetry pre-commit
python -m pip install --upgrade pip poetry==1.8.2 pre-commit
poetry config virtualenvs.create false --local
- name: Install dependencies
run: poetry install --all-extras
Expand Down
3 changes: 2 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 2 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ license = "MIT"
authors = [
{ name = "Aleksey Nekrasov", email = "a.nekrasov@mts.ai" },
{ name = "Suren Khorenyan", email = "s.khorenyan@mts.ai" },
{ name = "German Bernadskiy", email = "german11235813@gmail.com" },
]
keywords = [
"fastapi",
Expand Down Expand Up @@ -72,16 +73,7 @@ packages = [
]

[tool.poetry]
name = "fastapi-jsonapi"
version = "2.6.0"
description = "FastAPI extension to create REST web api according to JSON:API specification"
authors = [
"Aleksei Nekrasov <nekrasov.aleks@mail.ru>",
"Suren Khorenyan <surenkhorenyan@gmail.com>",
"German Bernadskiy <german11235813@gmail.com>",
]
license = "MIT"
readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.9"
Expand Down