Drop --reload from CLI, bump to 0.1.1
This commit is contained in:
parent
f46f52ce3a
commit
0a7cdc0f15
@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "chess-pressure"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "Chess pressure heatmap visualization"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
|
||||
@ -96,7 +96,6 @@ def main():
|
||||
parser.add_argument(
|
||||
"--workers", "-w", type=int, default=2, help="Worker processes (default: 2)"
|
||||
)
|
||||
parser.add_argument("--reload", action="store_true", help="Enable auto-reload")
|
||||
args = parser.parse_args()
|
||||
|
||||
uvicorn.run(
|
||||
@ -104,7 +103,6 @@ def main():
|
||||
host=args.host,
|
||||
port=args.port,
|
||||
workers=args.workers,
|
||||
reload=args.reload,
|
||||
)
|
||||
|
||||
|
||||
|
||||
4
uv.lock
generated
4
uv.lock
generated
@ -41,8 +41,8 @@ sdist = { url = "https://files.pythonhosted.org/packages/93/09/7d04d7581ae3bb8b5
|
||||
|
||||
[[package]]
|
||||
name = "chess-pressure"
|
||||
version = "0.1.0"
|
||||
source = { virtual = "." }
|
||||
version = "0.1.1"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "fastapi" },
|
||||
{ name = "python-chess" },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user