Skip to content

Commit

Permalink
Change version string to comply with PEP440
Browse files Browse the repository at this point in the history
It seems "-dev" (normalized to ".dev") should only be directly followed
by a number for different deveopment releases of the same version.
See full description: https://peps.python.org/pep-0440/
  • Loading branch information
kvid committed Aug 27, 2023
1 parent 1664d48 commit 0b9af8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wireviz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Please don't import anything in this file to avoid issues when it is imported in setup.py

__version__ = "0.4-dev-refactored"
__version__ = "0.4-dev251"

CMD_NAME = "wireviz" # Lower case command and module name
APP_NAME = "WireViz" # Application name in texts meant to be human readable
Expand Down

0 comments on commit 0b9af8d

Please sign in to comment.