From 75e962b1423f7d958b17957ebe971c0c2b262e92 Mon Sep 17 00:00:00 2001 From: erikayasuda <153395705+erikayasuda@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:57:16 -0500 Subject: [PATCH] chore: use guess-next-dev instead of release-branch-semver [2.18] (#11723) This PR updates the `version_schema` in the `../pyproject.toml` file for the 2.18 release branch from `release-branch-semver` to `guess-next-dev`. This is to ensure that system tests work as intended with backports to this release branch. IMPORTANT: This PR needs to be merged before the first backport is created for 2.18.Otherwise, system tests will not work as expected. - [x] Reviewer check --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c8ff26d223..95bce61fcd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ Homepage = "https://github.com/DataDog/dd-trace-py" "Source Code" = "https://github.com/DataDog/dd-trace-py/" [tool.setuptools_scm] -version_scheme = "release-branch-semver" # Must be "release-branch-semver" for now in main, see https://github.com/DataDog/dd-trace-py/issues/8801 +version_scheme = "guess-next-dev" # Must be "release-branch-semver" for now in main, see https://github.com/DataDog/dd-trace-py/issues/8801 write_to = "ddtrace/_version.py" [tool.cython-lint]