Bump version to 0.13.0
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "spoolman"
|
name = "spoolman"
|
||||||
version = "0.12.2"
|
version = "0.13.0"
|
||||||
description = "A web service that keeps track of 3D printing spools."
|
description = "A web service that keeps track of 3D printing spools."
|
||||||
authors = [{ name = "Donkie", email = "daniel.cf.hultgren@gmail.com" }]
|
authors = [
|
||||||
|
{ name = "Donkie", email = "daniel.cf.hultgren@gmail.com" },
|
||||||
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"uvicorn~=0.22.0",
|
"uvicorn~=0.22.0",
|
||||||
"httptools>=0.5.0; platform_machine != \"armv7l\"",
|
"httptools>=0.5.0; platform_machine != \"armv7l\"",
|
||||||
@@ -47,7 +49,9 @@ cmd = "uvicorn spoolman.main:app"
|
|||||||
cmd = "python tests_integration/run.py"
|
cmd = "python tests_integration/run.py"
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
select = ["ALL"]
|
select = [
|
||||||
|
"ALL",
|
||||||
|
]
|
||||||
ignore = [
|
ignore = [
|
||||||
"ANN101",
|
"ANN101",
|
||||||
"A003",
|
"A003",
|
||||||
@@ -74,13 +78,24 @@ line-length = 120
|
|||||||
target-version = "py39"
|
target-version = "py39"
|
||||||
|
|
||||||
[tool.ruff.per-file-ignores]
|
[tool.ruff.per-file-ignores]
|
||||||
"tests*/*" = ["ANN201", "S101", "PLR2004", "D103"]
|
"tests*/*" = [
|
||||||
"migrations/versions/*" = ["N999"]
|
"ANN201",
|
||||||
|
"S101",
|
||||||
|
"PLR2004",
|
||||||
|
"D103",
|
||||||
|
]
|
||||||
|
"migrations/versions/*" = [
|
||||||
|
"N999",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
target-version = ["py39"]
|
target-version = [
|
||||||
|
"py39",
|
||||||
|
]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["pdm-backend"]
|
requires = [
|
||||||
|
"pdm-backend",
|
||||||
|
]
|
||||||
build-backend = "pdm.backend"
|
build-backend = "pdm.backend"
|
||||||
|
|||||||
Reference in New Issue
Block a user