Skip to content

Commit e00e596

Browse files
committed
Release 3.0.0
1 parent f33a609 commit e00e596

2 files changed

Lines changed: 422 additions & 421 deletions

File tree

pyproject.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.coverage.run]
2-
omit = ["tests/*"]
2+
omit = [ "tests/*" ]
33

44
[tool.coverage.report]
55
fail_under = 35
@@ -14,8 +14,8 @@ line-length = 120
1414
fix = true
1515
output-format = "grouped"
1616

17-
[tool.ruff.format]
18-
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
17+
[tool.ruff.format]
18+
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
1919

2020
[tool.mypy]
2121
check_untyped_defs = true
@@ -31,21 +31,21 @@ warn_unused_configs = true
3131
warn_redundant_casts = true
3232

3333
[tool.hatch.build.targets.wheel]
34-
packages = ["webhook_server"]
34+
packages = [ "webhook_server" ]
3535

3636
[tool.uv]
37-
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]
37+
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]
3838

3939
[project]
4040
name = "github-webhook-server"
41-
version = "2.0.15"
41+
version = "3.0.0"
4242
requires-python = ">=3.12"
4343
description = "A webhook server to manage Github reposotories and pull requests."
4444
readme = "README.md"
4545
license = "Apache-2.0"
4646
classifiers = [
4747
"Programming Language :: Python :: 3",
48-
"Operating System :: OS Independent",
48+
"Operating System :: OS Independent"
4949
]
5050
dependencies = [
5151
"build>=1.2.2.post1",
@@ -67,23 +67,23 @@ dependencies = [
6767
"uvicorn>=0.31.0",
6868
"uvicorn-worker>=0.3.0",
6969
"gunicorn>=23.0.0",
70-
"httpx>=0.28.1",
70+
"httpx>=0.28.1"
7171
]
7272

73-
[[project.authors]]
74-
name = "Meni Yakove"
75-
email = " myakove@gmail.com"
73+
[[project.authors]]
74+
name = "Meni Yakove"
75+
email = " myakove@gmail.com"
7676

77-
[[project.authors]]
78-
name = "Ruth Netser"
79-
email = "ruth.netser@gmail.com"
77+
[[project.authors]]
78+
name = "Ruth Netser"
79+
email = "ruth.netser@gmail.com"
8080

81-
[project.urls]
82-
homepage = "https://github.com/myakove/github-webhook-server"
83-
repository = "https://github.com/myakove/github-webhook-server"
84-
Download = "https://quay.io/repository/myakove/github-webhook-server"
85-
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"
81+
[project.urls]
82+
homepage = "https://github.com/myakove/github-webhook-server"
83+
repository = "https://github.com/myakove/github-webhook-server"
84+
Download = "https://quay.io/repository/myakove/github-webhook-server"
85+
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"
8686

8787
[build-system]
88-
requires = ["hatchling"]
88+
requires = [ "hatchling" ]
8989
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)