Skip to content

Commit

Permalink
remove hard code version and replace with scm versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
alexus37Test committed Aug 16, 2021
1 parent 02ce66f commit 5c5f012
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,15 @@ def run(self):
setup(
name="partio",
description="A Python wrapper for partio",
version="1.14.0",
packages=[],
ext_modules=[PARTIO_EXT],
cmdclass={"build_ext": BuildCMakeExtension, "install_lib": InstallLibs,},
python_requires=">=3.6",
setup_requires=["setuptools_scm"],
use_scm_version={
"root": ".",
"relative_to": __file__,
"local_scheme": "no-local-version",
"version_scheme": "no-guess-dev",
},
)

0 comments on commit 5c5f012

Please sign in to comment.