[Python-modules-commits] [python-simpy3] branch master updated (49c3080 -> d84db3f)

Wolfgang Borgert debacle at moszumanska.debian.org
Mon Sep 26 23:41:18 UTC 2016


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

debacle pushed a change to branch master
in repository python-simpy3.

      from  49c3080   Fixed VCS URL (https)
       new  f73a12d   record new upstream branch created by importing python-simpy3_3.0.10.orig.tar.gz
       new  8b76fb2   Import python-simpy3_3.0.10.orig.tar.gz
       new  e3c3ea5   Use local inventory when building doc instead of fetching python.org
       new  015c670   merge patched into master
       new  d84db3f   prepare 3.0.10-1

The 5 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:
 .coveragerc                                        |   3 +
 .hg_archival.txt                                   |   4 +
 .hgignore                                          |  19 ++
 .hgtags                                            |  10 +
 AUTHORS.txt                                        |  11 +-
 CHANGES.txt                                        |  23 +-
 MANIFEST.in                                        |   3 +
 PKG-INFO                                           | 316 ---------------------
 README.txt                                         |  24 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  10 +-
 debian/clean                                       |   2 +-
 debian/control                                     |   7 +-
 .../patches/use-local-intersphinx-inventory.patch  |   6 +-
 debian/python-simpy-doc.doc-base                   |   1 -
 debian/rules                                       |   5 -
 docs/_templates/index.html                         |  11 +-
 docs/about/.history.rst.swp                        | Bin 36864 -> 0 bytes
 docs/about/defense_of_design.rst                   |   4 +-
 docs/about/history.rst                             |  17 ++
 docs/about/license.rst                             |   1 +
 docs/about/ports.rst                               |   7 +-
 docs/api_reference/.simpy.resources.rst.swp        | Bin 12288 -> 0 bytes
 docs/api_reference/simpy.resources.rst             |   6 +
 docs/api_reference/simpy.rt.rst                    |  39 ++-
 docs/conf.py                                       |  77 +++--
 docs/conftest.py                                   |   4 +-
 docs/conftest.pyc                                  | Bin 4631 -> 0 bytes
 docs/examples/code/machine_shop.py                 |   2 +-
 docs/examples/code/process_communication.py        |   4 +-
 docs/simpy_intro/installation.rst                  |   9 +-
 docs/simpy_intro/process_interaction.rst           |   4 +-
 docs/topical_guides/environments.rst               |   4 +-
 docs/topical_guides/index.rst                      |   2 +-
 docs/topical_guides/monitoring.rst                 | 306 ++++++++++++++++++++
 docs/topical_guides/resources.rst                  |  59 +++-
 requirements.txt                                   |  42 +--
 setup.cfg                                          |  12 +-
 setup.py                                           |  12 +-
 simpy.egg-info/PKG-INFO                            | 316 ---------------------
 simpy.egg-info/SOURCES.txt                         | 256 -----------------
 simpy.egg-info/dependency_links.txt                |   1 -
 simpy.egg-info/top_level.txt                       |   1 -
 {simpy => src/simpy}/__init__.py                   |  14 +-
 {simpy => src/simpy}/_compat.py                    |  23 +-
 {simpy => src/simpy}/core.py                       |   4 +-
 {simpy => src/simpy}/events.py                     | 106 +++++--
 {simpy => src/simpy}/resources/__init__.py         |   0
 {simpy => src/simpy}/resources/base.py             |  16 +-
 {simpy => src/simpy}/resources/container.py        |   0
 {simpy => src/simpy}/resources/resource.py         |  12 +-
 {simpy => src/simpy}/resources/store.py            |  39 +++
 {simpy => src/simpy}/rt.py                         |  12 +-
 {simpy => src/simpy}/util.py                       |  12 -
 {simpy/test => tests}/__init__.py                  |   0
 {simpy/test => tests}/conftest.py                  |   0
 tests/test_benchmark.py                            | 163 +++++++++++
 {simpy/test => tests}/test_condition.py            |   0
 {simpy/test => tests}/test_environment.py          |   0
 {simpy/test => tests}/test_event.py                |  27 ++
 {simpy/test => tests}/test_exceptions.py           |  74 ++++-
 {simpy/test => tests}/test_interrupts.py           |   0
 {simpy/test => tests}/test_process.py              |   0
 {simpy/test => tests}/test_resources.py            | 119 +++++++-
 {simpy/test => tests}/test_rt.py                   |   6 +-
 {simpy/test => tests}/test_timeout.py              |   0
 {simpy/test => tests}/test_util.py                 |   0
 tox.ini                                            |  24 +-
 68 files changed, 1176 insertions(+), 1129 deletions(-)
 create mode 100644 .coveragerc
 create mode 100644 .hg_archival.txt
 create mode 100644 .hgignore
 create mode 100644 .hgtags
 delete mode 100644 PKG-INFO
 delete mode 100644 docs/about/.history.rst.swp
 delete mode 100644 docs/api_reference/.simpy.resources.rst.swp
 delete mode 100644 docs/conftest.pyc
 create mode 100644 docs/topical_guides/monitoring.rst
 delete mode 100644 simpy.egg-info/PKG-INFO
 delete mode 100644 simpy.egg-info/SOURCES.txt
 delete mode 100644 simpy.egg-info/dependency_links.txt
 delete mode 100644 simpy.egg-info/top_level.txt
 rename {simpy => src/simpy}/__init__.py (86%)
 rename {simpy => src/simpy}/_compat.py (70%)
 rename {simpy => src/simpy}/core.py (98%)
 rename {simpy => src/simpy}/events.py (85%)
 rename {simpy => src/simpy}/resources/__init__.py (100%)
 rename {simpy => src/simpy}/resources/base.py (95%)
 rename {simpy => src/simpy}/resources/container.py (100%)
 rename {simpy => src/simpy}/resources/resource.py (94%)
 rename {simpy => src/simpy}/resources/store.py (75%)
 rename {simpy => src/simpy}/rt.py (93%)
 rename {simpy => src/simpy}/util.py (84%)
 rename {simpy/test => tests}/__init__.py (100%)
 rename {simpy/test => tests}/conftest.py (100%)
 create mode 100644 tests/test_benchmark.py
 rename {simpy/test => tests}/test_condition.py (100%)
 rename {simpy/test => tests}/test_environment.py (100%)
 rename {simpy/test => tests}/test_event.py (75%)
 rename {simpy/test => tests}/test_exceptions.py (73%)
 rename {simpy/test => tests}/test_interrupts.py (100%)
 rename {simpy/test => tests}/test_process.py (100%)
 rename {simpy/test => tests}/test_resources.py (82%)
 rename {simpy/test => tests}/test_rt.py (100%)
 rename {simpy/test => tests}/test_timeout.py (100%)
 rename {simpy/test => tests}/test_util.py (100%)

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



More information about the Python-modules-commits mailing list