set version to 0.8.10; add eventlet.__version__ attribute
This commit is contained in:
@@ -20,5 +20,5 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# This text exists only for the purpose of not making a complete
|
version_info = (0, 8, 10)
|
||||||
# mockery of the above copyright header.
|
__version__ = '%s.%s.%s' % version_info
|
||||||
|
3
setup.py
3
setup.py
@@ -2,11 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
from eventlet import __version__
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='eventlet',
|
name='eventlet',
|
||||||
version='0.8.9',
|
version=__version__,
|
||||||
description='Coroutine-based networking library',
|
description='Coroutine-based networking library',
|
||||||
author='Linden Lab',
|
author='Linden Lab',
|
||||||
author_email='eventletdev@lists.secondlife.com',
|
author_email='eventletdev@lists.secondlife.com',
|
||||||
|
Reference in New Issue
Block a user