[Python-modules-commits] [enum34] 01/03: Import enum34_1.1.6.orig.tar.gz

Barry Warsaw barry at moszumanska.debian.org
Wed Jul 13 14:11:21 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a commit to branch master
in repository enum34.

commit dfcf68ccae83d3ec57f03576847104d30ecd90ec
Author: Barry Warsaw <barry at python.org>
Date:   Tue Jul 12 11:29:56 2016 -0400

    Import enum34_1.1.6.orig.tar.gz
---
 PKG-INFO                    | 2 +-
 enum/__init__.py            | 2 +-
 enum/doc/enum.pdf           | 4 ++--
 enum/test.py                | 9 +++++----
 enum34.egg-info/PKG-INFO    | 2 +-
 enum34.egg-info/SOURCES.txt | 1 -
 setup.cfg                   | 5 +----
 setup.py                    | 9 ++++++++-
 8 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index 8a600b5..98927c4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: enum34
-Version: 1.1.5
+Version: 1.1.6
 Summary: Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4
 Home-page: https://bitbucket.org/stoneleaf/enum34
 Author: Ethan Furman
diff --git a/enum/__init__.py b/enum/__init__.py
index 5d88522..d6ffb3a 100644
--- a/enum/__init__.py
+++ b/enum/__init__.py
@@ -4,7 +4,7 @@ import sys as _sys
 
 __all__ = ['Enum', 'IntEnum', 'unique']
 
-version = 1, 1, 5
+version = 1, 1, 6
 
 pyver = float('%s.%s' % _sys.version_info[:2])
 
diff --git a/enum/doc/enum.pdf b/enum/doc/enum.pdf
index 157fd5f..8c1383a 100644
--- a/enum/doc/enum.pdf
+++ b/enum/doc/enum.pdf
@@ -100,7 +100,7 @@ endobj
 << /Outlines 31 0 R /PageLabels 68 0 R /PageMode /UseNone /Pages 55 0 R /Type /Catalog >>
 endobj
 30 0 obj
-<< /Author () /CreationDate (D:20160413232242+08'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) 
+<< /Author () /CreationDate (D:20160515202831+08'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) 
   /Title (enum --- support for enumerations) >>
 endobj
 31 0 obj
@@ -2230,7 +2230,7 @@ xref
 trailer
 << /ID 
  % ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(\300\007\257\036V\303\311fj\274s-\021\217\0054) (\300\007\257\036V\303\311fj\274s-\021\217\0054)]
+ [(<}|~gm\352\320\235=\001p\220v\224\336) (<}|~gm\352\320\235=\001p\220v\224\336)]
  /Info 30 0 R /Root 29 0 R /Size 81 >>
 startxref
 68303
diff --git a/enum/test.py b/enum/test.py
index 32aa60a..d9edfae 100644
--- a/enum/test.py
+++ b/enum/test.py
@@ -1,10 +1,11 @@
-import enum
+from pickle import dumps, loads, PicklingError, HIGHEST_PROTOCOL
 import sys
 import unittest
-from enum import Enum, IntEnum, unique, EnumMeta
-from pickle import dumps, loads, PicklingError, HIGHEST_PROTOCOL
-
 pyver = float('%s.%s' % sys.version_info[:2])
+if pyver < 2.5:
+    sys.path.insert(0, '.')
+import enum
+from enum import Enum, IntEnum, unique, EnumMeta
 
 if pyver < 2.6:
     from __builtin__ import enumerate as bltin_enumerate
diff --git a/enum34.egg-info/PKG-INFO b/enum34.egg-info/PKG-INFO
index 8a600b5..98927c4 100644
--- a/enum34.egg-info/PKG-INFO
+++ b/enum34.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: enum34
-Version: 1.1.5
+Version: 1.1.6
 Summary: Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4
 Home-page: https://bitbucket.org/stoneleaf/enum34
 Author: Ethan Furman
diff --git a/enum34.egg-info/SOURCES.txt b/enum34.egg-info/SOURCES.txt
index 904786c..e6855e6 100644
--- a/enum34.egg-info/SOURCES.txt
+++ b/enum34.egg-info/SOURCES.txt
@@ -1,6 +1,5 @@
 MANIFEST.in
 README
-setup.cfg
 setup.py
 enum/LICENSE
 enum/README
diff --git a/setup.cfg b/setup.cfg
index 1ea8acc..861a9f5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,8 +1,5 @@
-[bdist_wheel]
-universal = 1
-
 [egg_info]
-tag_svn_revision = 0
 tag_build = 
 tag_date = 0
+tag_svn_revision = 0
 
diff --git a/setup.py b/setup.py
index 4f5bd7a..8b28400 100644
--- a/setup.py
+++ b/setup.py
@@ -51,9 +51,16 @@ the enumeration itself can be iterated over.
 Repository and Issue Tracker at https://bitbucket.org/stoneleaf/enum34.
 '''
 
+py2_only = ()
+py3_only = ()
+make = [
+        'rst2pdf enum/doc/enum.rst --output=enum/doc/enum.pdf',
+        ]
+
+
 data = dict(
         name='enum34',
-        version='1.1.5',
+        version='1.1.6',
         url='https://bitbucket.org/stoneleaf/enum34',
         packages=['enum'],
         package_data={

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/enum34.git



More information about the Python-modules-commits mailing list