Skip to content

Commit

Permalink
Finally move away from version 0.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenain committed Jan 9, 2023
1 parent 699a84c commit f6c673b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctapipe_io_nectarcam/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
" does not include version information and should be avoided."
)
del warnings
version = "0.0.0"
version = "0.1.dev1"

__version__ = version

1 comment on commit f6c673b

@jlenain
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bad idea, I finally understood setuptools_scm will auto-discover the version number from git tags, if exist, and this value should default to 0.0.0 to raise of test failure in test_version.py otherwise.

Please sign in to comment.