Skip to content

Commit

Permalink
use "no-local-version" for setuptools_scm "local_scheme" config (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo authored Dec 26, 2024
1 parent c9d6bc9 commit 6e8320d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ def get_long_description():
name="PyMPDATA",
description="Numba-accelerated Pythonic implementation of MPDATA "
"with examples in Python, Julia, Rust and Matlab",
use_scm_version={"local_scheme": lambda _: "", "version_scheme": "post-release"},
use_scm_version={
"local_scheme": "no-local-version",
"version_scheme": "post-release",
},
setup_requires=["setuptools_scm"],
install_requires=[
"numba"
Expand Down

0 comments on commit 6e8320d

Please sign in to comment.