1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Normalize the version (#1101)

To fix that warning:

    setuptools/dist.py:473: UserWarning: Normalizing '2.5.0-dev' to '2.5.0.dev0'
This commit is contained in:
Mickaël Schoentgen
2021-07-01 10:34:51 +02:00
committed by GitHub
parent 9c38da96b0
commit 5717fb1ad5

View File

@@ -3,6 +3,6 @@ HTTPie: command-line HTTP client for the API era.
"""
__version__ = '2.5.0-dev'
__version__ = '2.5.0.dev0'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'