Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Donkie committed Oct 21, 2023
1 parent 9eb3aef commit aa2e79b
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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\"",
Expand Down Expand Up @@ -47,7 +49,9 @@ cmd = "uvicorn spoolman.main:app"
cmd = "python tests_integration/run.py"

[tool.ruff]
select = ["ALL"]
select = [
"ALL",
]
ignore = [
"ANN101",
"A003",
Expand All @@ -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"

0 comments on commit aa2e79b

Please sign in to comment.