From 97999c5e6758b26e5bfa2e2d2af223a0875b4618 Mon Sep 17 00:00:00 2001 From: rocky Date: Wed, 11 Oct 2017 07:56:52 -0400 Subject: [PATCH] Administrivia woes --- Makefile | 2 +- NEWS | 4 ++++ setup.py | 3 ++- uncompyle6/version.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ac3cf54b..2c93e154 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ bdist_egg: #: Create binary wheel distribution -bdist_wheel: +wheel: $(PYTHON) ./setup.py bdist_wheel diff --git a/NEWS b/NEWS index 1b838236..2d2aea22 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +uncompyle6 2.13.1 2017-10-11 + +- Re-release because Python 2.4 source uploaded rather than 2.6-3.6 + uncompyle6 2.13.0 2017-10-10 - Fixes in deparsing lambda expressions diff --git a/setup.py b/setup.py index 889456d9..c1df7ac5 100755 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ setup( py_modules = py_modules, test_suite = 'nose.collector', url = web, - tests_require = ['nose>=1.0'], + tests_require = ['nose>=1.0'], version = VERSION, + python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4', zip_safe = zip_safe) diff --git a/uncompyle6/version.py b/uncompyle6/version.py index 83bf3740..827d6100 100644 --- a/uncompyle6/version.py +++ b/uncompyle6/version.py @@ -1,3 +1,3 @@ # This file is suitable for sourcing inside bash as # well as importing into Python -VERSION='2.13.0' +VERSION='2.13.1'