Skip to content

Commit cf80d55

Browse files
authored
build(py): Use dynamic version (#5311)
1 parent 2897c68 commit cf80d55

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

py/.craft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ requireNames:
2121
- /^sentry_relay-.*-py2\.py3-none-macosx_14_0_arm64.whl$/
2222
- /^sentry_relay-.*-py2\.py3-none-.*manylinux_2_28_x86_64.*\.whl$/
2323
- /^sentry_relay-.*-py2\.py3-none-.*manylinux_2_28_aarch64.*\.whl$/
24-
- /^sentry-relay-.*\.tar\.gz$/
24+
- /^sentry_relay-.*\.tar\.gz$/

py/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
# Unreleased
3+
## Unreleased
44

55
- Introduces a project scope sampling rule type. ([#5077](https://github.com/getsentry/relay/pull/5077))
66
- Add InstallableBuild and SizeAnalysis data categories. ([#5084](https://github.com/getsentry/relay/pull/5084))

py/pyproject.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[project]
22
name = "sentry_relay"
3-
# see setup.py for versioning; we only have this here to make uv happy
4-
# which we intend to use for dependency management, not packaging
5-
version = "0.0.0"
63

74
# note: we're using legacy setup.py for building, but the mere presence
85
# of this file will have setuptools trying to use it
9-
dynamic = ["authors", "dependencies", "description", "license", "requires-python"]
6+
dynamic = [
7+
"authors",
8+
"dependencies",
9+
"description",
10+
"license",
11+
"requires-python",
12+
"version",
13+
]

0 commit comments

Comments
 (0)