From cd756588d9d8f304221de164fa0a4e07f6420c31 Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Sun, 27 Sep 2020 22:06:10 -0400 Subject: [PATCH] Convert to Cranko versioning Still need to automate dealing with docs/conf.py, but mostly there. --- .config/cranko/bootstrap.toml | 6 ++++++ .config/cranko/config.toml | 5 +++++ setup.py | 4 ++-- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .config/cranko/bootstrap.toml create mode 100644 .config/cranko/config.toml diff --git a/.config/cranko/bootstrap.toml b/.config/cranko/bootstrap.toml new file mode 100644 index 0000000..978036d --- /dev/null +++ b/.config/cranko/bootstrap.toml @@ -0,0 +1,6 @@ +[[project]] +qnames = [ + 'wwt_data_formats', + 'pypa', +] +version = '0.4.1' diff --git a/.config/cranko/config.toml b/.config/cranko/config.toml new file mode 100644 index 0000000..72c5bff --- /dev/null +++ b/.config/cranko/config.toml @@ -0,0 +1,5 @@ +[repo] +upstream_urls = [ + 'git@github.com:WorldWideTelescope/wwt_data_formats.git', + 'https://github.com/WorldWideTelescope/wwt_data_formats.git', +] diff --git a/setup.py b/setup.py index 51996a6..0b6696f 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,8 @@ project homepage]. setup_args = dict( - name = 'wwt_data_formats', - version = '0.5.0.dev0', # also update docs/conf.py + name = 'wwt_data_formats', # cranko project-name + version = '0.dev0', # cranko project-version description = 'Low-level interface to AAS WorldWide Telescope data formats', long_description = get_long_desc(), long_description_content_type = 'text/markdown',