Skip to content

Commit 7e7b95e

Browse files
committed
Update setup.py to restrict setuptools_scm versions.
1 parent 8378921 commit 7e7b95e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,11 @@ def build_extension(self, ext):
132132
"git_describe_command": "git describe --dirty --tags --long --match *.*.*.*",
133133
"write_to": "newrelic/version.txt",
134134
},
135-
setup_requires=['setuptools_scm'],
135+
setup_requires=["setuptools_scm>=3.2,<4"],
136136
description = "New Relic Python Agent",
137137
long_description = open(readme_file).read(),
138-
url = "http://newrelic.com/docs/python/new-relic-for-python",
138+
url = "https://newrelic.com/docs/python/new-relic-for-python",
139+
project_urls = {"Source": "https://github.com/newrelic/newrelic-python-agent"},
139140
author = "New Relic",
140141
author_email = "[email protected]",
141142
maintainer = 'New Relic',

0 commit comments

Comments
 (0)