From 5717fb1ad53b5b69aca8e374af72f76084038f73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Thu, 1 Jul 2021 10:34:51 +0200 Subject: [PATCH] Normalize the version (#1101) To fix that warning: setuptools/dist.py:473: UserWarning: Normalizing '2.5.0-dev' to '2.5.0.dev0' --- httpie/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpie/__init__.py b/httpie/__init__.py index fc3a9e54..3cb9aa38 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -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'