-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The initial migration never disabled the manual writing of version to setup.py. setuptools_scm version 8 ceased support for overwriting the version when it is already set. Disable manual writing and remove the version restriction on setuptools_scm. Fixes #190
- Loading branch information
Showing
3 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,15 @@ | |
|
||
setup( | ||
name="yq", | ||
version="3.4.2", | ||
url="https://github.com/kislyuk/yq", | ||
license="Apache Software License", | ||
author="Andrey Kislyuk", | ||
author_email="[email protected]", | ||
description="Command-line YAML/XML processor - jq wrapper for YAML/XML documents", | ||
long_description=open("README.rst").read(), | ||
python_requires=">=3.6", | ||
use_scm_version={ | ||
"write_to": "yq/version.py", | ||
}, | ||
setup_requires=["setuptools_scm >= 7, <8"], | ||
python_requires=">=3.8", | ||
use_scm_version=True, | ||
setup_requires=["setuptools_scm >= 7"], | ||
install_requires=[ | ||
"PyYAML >= 5.3.1", | ||
"xmltodict >= 0.11.0", | ||
|