Skip to content

Commit 3edc265

Browse files
committed
Upgrade poetry config, disable package-mode since we're using hatchling
1 parent bb270ae commit 3edc265

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

.github/workflows/testing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install poetry
4141
run: |
42-
python -m pip install --upgrade pip poetry pre-commit
42+
python -m pip install --upgrade pip poetry==1.8.2 pre-commit
4343
poetry config virtualenvs.create false --local
4444
- name: Install dependencies
4545
run: poetry install --all-extras
@@ -87,7 +87,7 @@ jobs:
8787
python-version: ${{ matrix.python-version }}
8888
- name: Install poetry
8989
run: |
90-
python -m pip install --upgrade pip poetry pre-commit
90+
python -m pip install --upgrade pip poetry==1.8.2 pre-commit
9191
poetry config virtualenvs.create false --local
9292
- name: Install dependencies
9393
run: poetry install --all-extras

poetry.lock

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ license = "MIT"
1111
authors = [
1212
{ name = "Aleksey Nekrasov", email = "[email protected]" },
1313
{ name = "Suren Khorenyan", email = "[email protected]" },
14+
{ name = "German Bernadskiy", email = "[email protected]" },
1415
]
1516
keywords = [
1617
"fastapi",
@@ -72,16 +73,7 @@ packages = [
7273
]
7374

7475
[tool.poetry]
75-
name = "fastapi-jsonapi"
76-
version = "2.6.0"
77-
description = "FastAPI extension to create REST web api according to JSON:API specification"
78-
authors = [
79-
"Aleksei Nekrasov <[email protected]>",
80-
"Suren Khorenyan <[email protected]>",
81-
"German Bernadskiy <[email protected]>",
82-
]
83-
license = "MIT"
84-
readme = "README.md"
76+
package-mode = false
8577

8678
[tool.poetry.dependencies]
8779
python = "^3.9"

0 commit comments

Comments
 (0)