[Python-modules-commits] [python-aniso8601] branch upstream updated (1116717 -> 52db46f)

Jonathan Carter highvoltage-guest at moszumanska.debian.org
Thu Nov 10 19:34:27 UTC 2016


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

highvoltage-guest pushed a change to branch upstream
in repository python-aniso8601.

      from  1116717   Imported Upstream version 0.83
       new  52db46f   New upstream version 1.2.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   9 -
 COPYING                                            | 675 ---------------------
 LICENSE                                            |  27 +
 MANIFEST.in                                        |   5 +-
 PKG-INFO                                           | 331 ++++++++++
 README.rst                                         | 111 +++-
 aniso8601.egg-info/PKG-INFO                        | 331 ++++++++++
 aniso8601.egg-info/SOURCES.txt                     |  65 ++
 aniso8601.egg-info/dependency_links.txt            |   1 +
 aniso8601.egg-info/requires.txt                    |   1 +
 aniso8601.egg-info/top_level.txt                   |   1 +
 aniso8601/__init__.py                              |  13 +
 aniso8601/__init__.pyc                             | Bin 0 -> 515 bytes
 aniso8601/__pycache__/__init__.cpython-34.pyc      | Bin 0 -> 511 bytes
 aniso8601/__pycache__/__init__.cpython-35.pyc      | Bin 0 -> 511 bytes
 aniso8601/__pycache__/compat.cpython-34.pyc        | Bin 0 -> 259 bytes
 aniso8601/__pycache__/compat.cpython-35.pyc        | Bin 0 -> 259 bytes
 aniso8601/__pycache__/date.cpython-34.pyc          | Bin 0 -> 4295 bytes
 aniso8601/__pycache__/date.cpython-35.pyc          | Bin 0 -> 4272 bytes
 aniso8601/__pycache__/duration.cpython-34.pyc      | Bin 0 -> 3427 bytes
 aniso8601/__pycache__/duration.cpython-35.pyc      | Bin 0 -> 4657 bytes
 aniso8601/__pycache__/interval.cpython-34.pyc      | Bin 0 -> 2326 bytes
 aniso8601/__pycache__/interval.cpython-35.pyc      | Bin 0 -> 2386 bytes
 aniso8601/__pycache__/resolution.cpython-34.pyc    | Bin 0 -> 705 bytes
 aniso8601/__pycache__/resolution.cpython-35.pyc    | Bin 0 -> 705 bytes
 aniso8601/__pycache__/time.cpython-34.pyc          | Bin 0 -> 3656 bytes
 aniso8601/__pycache__/time.cpython-35.pyc          | Bin 0 -> 3676 bytes
 aniso8601/__pycache__/timezone.cpython-34.pyc      | Bin 0 -> 2700 bytes
 aniso8601/__pycache__/timezone.cpython-35.pyc      | Bin 0 -> 2745 bytes
 aniso8601/compat.py                                |  16 +
 aniso8601/compat.pyc                               | Bin 0 -> 235 bytes
 {python3/aniso8601 => aniso8601}/date.py           | 184 ++++--
 aniso8601/date.pyc                                 | Bin 0 -> 4558 bytes
 aniso8601/duration.py                              | 259 ++++++++
 aniso8601/duration.pyc                             | Bin 0 -> 4987 bytes
 {python2/aniso8601 => aniso8601}/interval.py       |  66 +-
 aniso8601/interval.pyc                             | Bin 0 -> 2532 bytes
 aniso8601/resolution.py                            |  15 +
 aniso8601/resolution.pyc                           | Bin 0 -> 721 bytes
 .../tests/__pycache__/test_date.cpython-34.pyc     | Bin 0 -> 6122 bytes
 .../tests/__pycache__/test_date.cpython-35.pyc     | Bin 0 -> 6124 bytes
 .../tests/__pycache__/test_duration.cpython-34.pyc | Bin 0 -> 6932 bytes
 .../tests/__pycache__/test_duration.cpython-35.pyc | Bin 0 -> 9385 bytes
 .../tests/__pycache__/test_init.cpython-34.pyc     | Bin 0 -> 1871 bytes
 .../tests/__pycache__/test_init.cpython-35.pyc     | Bin 0 -> 1871 bytes
 .../tests/__pycache__/test_interval.cpython-34.pyc | Bin 0 -> 9306 bytes
 .../tests/__pycache__/test_interval.cpython-35.pyc | Bin 0 -> 10254 bytes
 .../tests/__pycache__/test_time.cpython-34.pyc     | Bin 0 -> 12924 bytes
 .../tests/__pycache__/test_time.cpython-35.pyc     | Bin 0 -> 12924 bytes
 .../tests/__pycache__/test_timezone.cpython-34.pyc | Bin 0 -> 3904 bytes
 .../tests/__pycache__/test_timezone.cpython-35.pyc | Bin 0 -> 3907 bytes
 .../aniso8601 => aniso8601}/tests/test_date.py     | 125 ++--
 aniso8601/tests/test_date.pyc                      | Bin 0 -> 6748 bytes
 aniso8601/tests/test_duration.py                   | 418 +++++++++++++
 aniso8601/tests/test_duration.pyc                  | Bin 0 -> 10074 bytes
 .../aniso8601 => aniso8601}/tests/test_init.py     |  19 +-
 aniso8601/tests/test_init.pyc                      | Bin 0 -> 2125 bytes
 aniso8601/tests/test_interval.py                   | 263 ++++++++
 aniso8601/tests/test_interval.pyc                  | Bin 0 -> 10769 bytes
 .../aniso8601 => aniso8601}/tests/test_time.py     | 229 ++++++-
 aniso8601/tests/test_time.pyc                      | Bin 0 -> 14261 bytes
 .../aniso8601 => aniso8601}/tests/test_timezone.py |  58 +-
 aniso8601/tests/test_timezone.pyc                  | Bin 0 -> 4386 bytes
 aniso8601/time.py                                  | 231 +++++++
 aniso8601/time.pyc                                 | Bin 0 -> 3936 bytes
 aniso8601/timezone.py                              | 112 ++++
 aniso8601/timezone.pyc                             | Bin 0 -> 2874 bytes
 docs/Makefile                                      | 153 -----
 docs/conf.py                                       | 242 --------
 docs/index.rst                                     |   1 -
 docs/make.bat                                      | 190 ------
 python-aniso8601.spec                              |  88 ---
 python2/aniso8601/__init__.py                      |  22 -
 python2/aniso8601/date.py                          | 205 -------
 python2/aniso8601/duration.py                      | 164 -----
 python2/aniso8601/tests/test_duration.py           | 221 -------
 python2/aniso8601/tests/test_interval.py           |  91 ---
 python2/aniso8601/time.py                          | 233 -------
 python2/aniso8601/timezone.py                      |  91 ---
 python3/aniso8601/__init__.py                      |  22 -
 python3/aniso8601/duration.py                      | 164 -----
 python3/aniso8601/interval.py                      | 140 -----
 python3/aniso8601/tests/test_date.py               | 217 -------
 python3/aniso8601/tests/test_duration.py           | 221 -------
 python3/aniso8601/tests/test_init.py               |  57 --
 python3/aniso8601/tests/test_interval.py           |  91 ---
 python3/aniso8601/tests/test_time.py               | 325 ----------
 python3/aniso8601/tests/test_timezone.py           | 112 ----
 python3/aniso8601/time.py                          | 233 -------
 python3/aniso8601/timezone.py                      |  91 ---
 setup.cfg                                          |   5 +
 setup.py                                           |  16 +-
 92 files changed, 2661 insertions(+), 4299 deletions(-)
 delete mode 100644 .gitignore
 delete mode 100644 COPYING
 create mode 100644 LICENSE
 create mode 100644 PKG-INFO
 create mode 100644 aniso8601.egg-info/PKG-INFO
 create mode 100644 aniso8601.egg-info/SOURCES.txt
 create mode 100644 aniso8601.egg-info/dependency_links.txt
 create mode 100644 aniso8601.egg-info/requires.txt
 create mode 100644 aniso8601.egg-info/top_level.txt
 create mode 100644 aniso8601/__init__.py
 create mode 100644 aniso8601/__init__.pyc
 create mode 100644 aniso8601/__pycache__/__init__.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/__init__.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/compat.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/compat.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/date.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/date.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/duration.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/duration.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/interval.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/interval.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/resolution.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/resolution.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/time.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/time.cpython-35.pyc
 create mode 100644 aniso8601/__pycache__/timezone.cpython-34.pyc
 create mode 100644 aniso8601/__pycache__/timezone.cpython-35.pyc
 create mode 100644 aniso8601/compat.py
 create mode 100644 aniso8601/compat.pyc
 rename {python3/aniso8601 => aniso8601}/date.py (54%)
 create mode 100644 aniso8601/date.pyc
 create mode 100644 aniso8601/duration.py
 create mode 100644 aniso8601/duration.pyc
 rename {python2/aniso8601 => aniso8601}/interval.py (66%)
 create mode 100644 aniso8601/interval.pyc
 create mode 100644 aniso8601/resolution.py
 create mode 100644 aniso8601/resolution.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_date.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_date.cpython-35.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_duration.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_duration.cpython-35.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_init.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_init.cpython-35.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_interval.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_interval.cpython-35.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_time.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_time.cpython-35.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_timezone.cpython-34.pyc
 create mode 100644 aniso8601/tests/__pycache__/test_timezone.cpython-35.pyc
 rename {python2/aniso8601 => aniso8601}/tests/test_date.py (66%)
 create mode 100644 aniso8601/tests/test_date.pyc
 create mode 100644 aniso8601/tests/test_duration.py
 create mode 100644 aniso8601/tests/test_duration.pyc
 rename {python2/aniso8601 => aniso8601}/tests/test_init.py (74%)
 create mode 100644 aniso8601/tests/test_init.pyc
 create mode 100644 aniso8601/tests/test_interval.py
 create mode 100644 aniso8601/tests/test_interval.pyc
 rename {python2/aniso8601 => aniso8601}/tests/test_time.py (58%)
 create mode 100644 aniso8601/tests/test_time.pyc
 rename {python2/aniso8601 => aniso8601}/tests/test_timezone.py (70%)
 create mode 100644 aniso8601/tests/test_timezone.pyc
 create mode 100644 aniso8601/time.py
 create mode 100644 aniso8601/time.pyc
 create mode 100644 aniso8601/timezone.py
 create mode 100644 aniso8601/timezone.pyc
 delete mode 100644 docs/Makefile
 delete mode 100644 docs/conf.py
 delete mode 120000 docs/index.rst
 delete mode 100644 docs/make.bat
 delete mode 100644 python-aniso8601.spec
 delete mode 100644 python2/aniso8601/__init__.py
 delete mode 100644 python2/aniso8601/date.py
 delete mode 100644 python2/aniso8601/duration.py
 delete mode 100644 python2/aniso8601/tests/test_duration.py
 delete mode 100644 python2/aniso8601/tests/test_interval.py
 delete mode 100644 python2/aniso8601/time.py
 delete mode 100644 python2/aniso8601/timezone.py
 delete mode 100644 python3/aniso8601/__init__.py
 delete mode 100644 python3/aniso8601/duration.py
 delete mode 100644 python3/aniso8601/interval.py
 delete mode 100644 python3/aniso8601/tests/test_date.py
 delete mode 100644 python3/aniso8601/tests/test_duration.py
 delete mode 100644 python3/aniso8601/tests/test_init.py
 delete mode 100644 python3/aniso8601/tests/test_interval.py
 delete mode 100644 python3/aniso8601/tests/test_time.py
 delete mode 100644 python3/aniso8601/tests/test_timezone.py
 delete mode 100644 python3/aniso8601/time.py
 delete mode 100644 python3/aniso8601/timezone.py
 create mode 100644 setup.cfg

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



More information about the Python-modules-commits mailing list