summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2019-11-14 18:40:13 +0100
committerAsif Saif Uddin <auvipy@gmail.com>2020-08-19 12:04:32 +0600
commit7fb50b45f95af898a18aff0451c3175bec376152 (patch)
treea227168415255b9a08e8a34a1438ca46020469ce
parent1e766c02f91e796af4232995caa7d207c8dddefe (diff)
downloadpy-amqp-7fb50b45f95af898a18aff0451c3175bec376152.tar.gz
Fix pypi classifier development status (#294)
The version 5.0 is currently an alpha version but pypi classifiers tag this version as a production/stable version, this is wrong, this version is a pre-alpha version. The main issue is that by using pip or requirements file to install py-amqp it will pull and install the pre-alpha version (5.0) instead of the stable version 2.5.2. Normally pip don't install non stable version except if user explicitly specify to install a non stable version. Example with oslo.messaging: ``` $ pip install oslo.messaging ``` The previous command will pull py-amqp 5.0
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c2144a9..dae465e 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ NAME = 'amqp'
# -*- Classifiers -*-
classes = """
- Development Status :: 5 - Production/Stable
+ Development Status :: 2 - Pre-Alpha
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7