Skip to content

Commit

Permalink
Update to version 9.0.1
Browse files Browse the repository at this point in the history
Add two command line options '--gif' for creating animation and '--gif-speed' for controlling animation speed.

Added experimental auto changelog generator option while releasing apps.

 Added back setuptools_scm for controlling conda version. 

Avoid writing to version file
  • Loading branch information
wxguy committed Feb 11, 2023
1 parent c3f55fa commit 1766b13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "wrfplot/_version.py"
# write_to = "wrfplot/_version.py"
version_scheme = "post-release"
# version_scheme = "python-simplified-semver"

[project]
Expand Down
4 changes: 2 additions & 2 deletions wrfplot/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = version = '0.8.9.dev0+gc003429.d20230209'
__version_tuple__ = version_tuple = (0, 8, 9, 'dev0', 'gc003429.d20230209')
__version__ = version = '0.9.0'
__version_tuple__ = version_tuple = (0, 9, 0)

0 comments on commit 1766b13

Please sign in to comment.