Bump version to 0.13.0
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
[project]
|
||||
name = "spoolman"
|
||||
version = "0.12.2"
|
||||
version = "0.13.0"
|
||||
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 = [
|
||||
"uvicorn~=0.22.0",
|
||||
"httptools>=0.5.0; platform_machine != \"armv7l\"",
|
||||
@@ -47,7 +49,9 @@ cmd = "uvicorn spoolman.main:app"
|
||||
cmd = "python tests_integration/run.py"
|
||||
|
||||
[tool.ruff]
|
||||
select = ["ALL"]
|
||||
select = [
|
||||
"ALL",
|
||||
]
|
||||
ignore = [
|
||||
"ANN101",
|
||||
"A003",
|
||||
@@ -74,13 +78,24 @@ line-length = 120
|
||||
target-version = "py39"
|
||||
|
||||
[tool.ruff.per-file-ignores]
|
||||
"tests*/*" = ["ANN201", "S101", "PLR2004", "D103"]
|
||||
"migrations/versions/*" = ["N999"]
|
||||
"tests*/*" = [
|
||||
"ANN201",
|
||||
"S101",
|
||||
"PLR2004",
|
||||
"D103",
|
||||
]
|
||||
"migrations/versions/*" = [
|
||||
"N999",
|
||||
]
|
||||
|
||||
[tool.black]
|
||||
line-length = 120
|
||||
target-version = ["py39"]
|
||||
target-version = [
|
||||
"py39",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["pdm-backend"]
|
||||
requires = [
|
||||
"pdm-backend",
|
||||
]
|
||||
build-backend = "pdm.backend"
|
||||
|
||||
Reference in New Issue
Block a user