File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 44# Licensed under the terms of the MIT License
55# (see qwt/LICENSE for details)
66
7- __version__ = QWT_VERSION_STR = '6.1.2alpha3 '
7+ __version__ = QWT_VERSION_STR = '6.1.2a3 '
88
99import warnings
1010
Original file line number Diff line number Diff line change 1717import sys
1818import os .path as osp
1919
20+ import setuptools # analysis:ignore
2021from distutils .core import setup
2122from distutils .command .build import build
2223
2728LONG_DESCRIPTION = ''
2829KEYWORDS = ''
2930CLASSIFIERS = ['Topic :: Scientific/Engineering' ]
30- if 'alpha' in version :
31- CLASSIFIERS += ['Development Status :: 3 - Alpha' ]
32- elif 'beta' in version :
31+ if 'beta' in version or 'b' in version :
3332 CLASSIFIERS += ['Development Status :: 4 - Beta' ]
33+ elif 'alpha' in version or 'a' in version :
34+ CLASSIFIERS += ['Development Status :: 3 - Alpha' ]
3435else :
3536 CLASSIFIERS += ['Development Status :: 5 - Production/Stable' ]
3637
You can’t perform that action at this time.
0 commit comments