[Python-modules-commits] [python-pykka] branch master created (now ec13457)

Stein Magnus Jodal jodal at moszumanska.debian.org
Sat Nov 7 20:22:39 UTC 2015


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

jodal pushed a change to branch master
in repository python-pykka.

        at  ec13457   debian: Add Build-Depends on python-setuptools

This branch includes the following new commits:

       new  f2366b7   Initial release
       new  28a18e9   Use 'inbox' consistently
       new  91029cb   Ensure that __str__ returns a str
       new  2007b26   Start and stop, instead of start and quit
       new  ac1d6a4   Add .gitignore
       new  245bf4f   Add counter example
       new  a739189   Move example out of pykka.py
       new  e10d48a   Make pykka a package
       new  56282ed   Add setup.py
       new  c06ee54   Add MANIFEST and dist/ to .gitignore
       new  02e6227   Add MANIFEST.in
       new  b7eccdd   Change dev status to pre-alpha
       new  77c63b3   Add test for field reading
       new  641d4a0   Test method calls, with return value or side effect
       new  427e87f   Explicitly call get() on futures in examples
       new  2321079   Test Future
       new  7d82be3   Test clean exit at keyboard interrupt
       new  efcb7b1   Add support for field setting
       new  ba2c5cd   Extend example with field setting
       new  07ca137   Release v0.2
       new  2264168   Typos in example
       new  d6ade20   Add timeout support to Future.get()
       new  94f91e6   Raise exception with proper error message if accessing unknown attrs through proxy
       new  65e692d   Dynamically update map of available attributes, in case any was added at runtime
       new  77d0b08   Add dir() support to proxy
       new  75c1777   More consistent naming
       new  8637681   Make run_inside_try private
       new  dc695f7   Reorder Actor methods and adjust visability
       new  15dfbaa   Rename test case
       new  8a3dea7   Support sending custom messages to actor
       new  c5aba1f   More docstrings
       new  a112926   Release v0.3
       new  29bf046   Started on ActorRegistry
       new  dbb2ad8   Add Future.wait() as an alias to Future.get(), as it is more descriptive when we just want to block on a method completing and do not care about its return value
       new  c986eb6   Add Sphinx-based docs
       new  f620c4a   Add project resources and dev snapshot links to README
       new  b0d68df   Add DNS resolver example
       new  61a9a5a   Cleanup proc, func and field example
       new  9717214   Test that getting unknown messages causes the default react() impl to blow up
       new  a7d3030   Support looking up running actors by class
       new  79ccff9   Support looking up running actors by class name
       new  306381b   Remove need for 'copy' module
       new  bf54918   Document registry methods
       new  d284ec9   Add stop_all() method to registry
       new  0b48ef9   Let Future.wait get its own docs
       new  88240ed   Add get_all and wait_all
       new  f902163   Update resolver example to use new features
       new  fe0d853   Use new features in old tests
       new  7fac52f   Remove pickle functions from public API
       new  912cfb5   Limit what is imported by wildcard
       new  a72a94f   Add VERSION field and use it in setup.py and docs
       new  dfd0eae   Update readme
       new  ab1eaef   Update short desc and dev status
       new  9f649b5   Remove __all__ as it is pain to maintain and only prevent imports from leaking through wildcard imports
       new  3097a85   Remove constructor arg magic and hide real actor references better
       new  426e2b3   Mark actor threads as daemon threads so that they are killed when the main thread exits
       new  6752a2f   Split src into multiple files
       new  8dd43e4   Readd __all__, as we now explicitly imports into the pykka namespace
       new  24d148e   Remove docstring which only repeats the readme
       new  7e1a830   Release v0.5
       new  c711dde   Include docs when installing
       new  fee2da3   Link to GitHub Pages from PyPI
       new  02d43dd   Fix typo
       new  d479e90   Fix typo in docstring
       new  b832e94   Get test coverage to 100%
       new  89c7d22   Current state of gevent experiment
       new  06921f1   Add UUID-based URN to all actor instances, and add get_by_urn() to ActorRegistry
       new  8e88dc6   The actor inbox should be private
       new  158a62e   More concistent naming
       new  725e861   Include actor type and URN in repr(ActorProxy) output
       new  d63feee   Add __str__() to ActorProxy
       new  c53631c   Move parts of Actor.start() to Actor.__new__(), so the actor is closer to fully set up after a normal instantiation
       new  9c962ab   Improve Actor docstring
       new  2e75935   Add logging when starting/registering/stopping/unregistering actors
       new  3460225   Split ActorProxy into ActorProxy and ActorRef. Lots of refactoring. All tests green.
       new  3087a9d   Add Actor.start_proxy()
       new  3de4f2b   Update examples
       new  cbe9ed5   Add plain actor example
       new  0639712   Update docs
       new  bfa8282   Merge branch 'feature/gevent'
       new  26ee17c   Release v0.6
       new  ba7cf0a   Remove redundant imports
       new  3741079   Formatting
       new  5d6ab3e   The actor should not be created manually
       new  d76c7d0   Update docs copyright
       new  c2015f1   Switch to 'default' theme
       new  c335c49   Move print stmt out of actor, and show of send_request_reply better
       new  dbf1e20   Move most of README into docs
       new  fbf5b5c   Include examples directly from examples/ dir
       new  d337256   Update description
       new  4725984   Turn off viewcode ext
       new  8aa4975   Improve ActorRef docs
       new  1c3d15e   Use pykka.foo.Bar instead of importing everything into the pykka module
       new  ce79989   autodoc all modules
       new  78fc0d0   Improve API docs
       new  2ac2ba7   Add missing part of commands
       new  5f9885e   Simplify get_version()
       new  4bf32c7   Prefix internal messages with pykka_ and document that their use are reserved
       new  68e4d52   Move actor description from docstring to docs
       new  e7a2da2   Add reference to Akka
       new  efd1f4a   Fix references in docs
       new  651dd52   Release v0.7
       new  25da3c0   Initial work on accessing attribute's attributes
       new  478b6e6   Implement traversable attributes
       new  55d062a   Send exceptions in the actor to the callee
       new  a22dd1b   Show attr_path in ActorProxy.__repr__
       new  2151df4   Document traversable attributes
       new  cada61f   Release v0.8
       new  ae22073   Let library user gevent.monkey.patch_all() himself
       new  2f22320   Add Tox for testing on Python 2.6, 2.7 and 3.1
       new  d3a918b   Patch with result of 2to3 run
       new  a3f5f7c   Reorganize tests to allow for multiple actor variants
       new  0c6c8c5   Add GeventActor subclass of Actor
       new  0fd3a9d   Add ThreadingActor which can be started
       new  196e979   Wrap gevent.event.AsyncResult in pykka.future.GeventFuture
       new  3087083   Start implementing ThreadingFuture
       new  b1beb0e   ThreadingFuture passes future tests
       new  b6649c6   Implement serialization of futures
       new  1aeaae1   Make ThreadingActorTest pass by using new future serialization
       new  e7cb511   Run all tests on ThreadingActor too
       new  4211cef   Merge branch 'feature/threading-actor'
       new  0947e95   Fix docs part of tox run
       new  a4f46be   Fix docstring
       new  4832a5e   Introduce ThreadingActor and GeventActor in the README
       new  5faee61   Review docs
       new  eb6c799   Update examples
       new  4a99bd3   Move all gevent-based features to pykka.gevent
       new  6bab9f3   Extend ActorProxy docs with how to use the returned futures
       new  6ffaf68   Remove wait_all() function
       new  76dddab   Update description and categories for PyPI
       new  04c67bb   Include pylintrc and tox.ini in source package
       new  2cdc940   Pylint fixes
       new  ff71d53   Docstring fixes
       new  00dcd35   Release v0.9
       new  3754197   Support sending nested futures between actors
       new  9aab07e   Remove Future.{serialize,unserialize} in favor of the new pickle support in ThreadingFuture
       new  e29e540   Make ThreadingFutures work after multiple serializations
       new  92ba3bf   Add docstrings to internal classes
       new  5c47a5f   Release v0.9.1
       new  498619b   Add Actor.post_start() hook
       new  63f0d1a   Replace Actor.start_proxy() with ActorRef.proxy()
       new  0a6e4eb   Add lookup by superclass to ActorRegistry.get_by_class
       new  f7bfcf9   Release v0.10
       new  c74e1fd   Add Google Analytics to docs
       new  5715b45   Add docs building requirements
       new  7d32fa4   Test behavior of proxied access to private fields
       new  1d715d5   Replace multiprocessing with Queue.Queue
       new  9758d06   Release v0.11
       new  51d8bd7   Make pylint disabling of E0702 more local
       new  0e62d47   Avoid recursive call to get()
       new  5dbbe3e   Catch and return all exceptions, and not just those subclassing Exception
       new  cf29128   Ignore pylint warning
       new  3ea68d6   Fix pep8 warnings
       new  bab6f00   Delay use of actor_ref in ActorProxy until needed
       new  7634d14   Fix crach on CPython 2.6.4 when checking if Queue.Queue is callable
       new  905054b   Release v0.11.1
       new  da63321   Add py32 to tox.ini
       new  d13443f   Rename post_start() to pre_start() to adhere to Akka's naming
       new  96c8701   Add post_stop() hook to Actor
       new  a28f741   Add pre_start() and post_stop() to Actor example
       new  c7f4702   Add NullHandler to logger as recommended by stdlib docs
       new  293dbb2   Log exceptions that are returned to the caller on debug level in case the caller ignores them
       new  d6b2451   Log unhandled exceptions to ease debugging
       new  50ef24d   Document how to use logging in Pykka
       new  4c188c1   Make both actor_ref and actor_proxy available in test
       new  e041e7b   Add docstring to Timeout exception
       new  c71ba92   Add ActorRef.is_alive() and check if actor is alive before it is used by any ActorRef method
       new  e343186   Move pykka.future.Timeout to pykka.Timeout
       new  37d79b2   Alias all Pykka imports to avoid importing Pykka classes from the wrong module
       new  02c84a1   Make non-gevent tests run under Python 3.1 and 3.2
       new  670c07f   Make all tests pass on Python 3.2
       new  7d8b5e1   Make all tests pass on Python 3.1
       new  ddc3e75   Move TestLogHandler to __init__ for reuse
       new  62388ab   Log unexpected messages instead of raising NotImplementedError if react() is not implemented
       new  16ac684   Fix typo
       new  fe27808   Ignore 'pykka' prefix in docs' modules index
       new  016a4fa   Small docstring improvements
       new  184450d   Hide imports from namespace
       new  6aceb65   Ignore invalid pylint warnings/errors
       new  89140bb   Use _is_callable_attribute() instead of redefining callable() for Python 3.x
       new  6b3c594   Improve docstring
       new  ecad6fa   Make Actor.actor_runnable private
       new  eec6201   Greatly improve testing of hooks
       new  1066c45   Add on_failure() hook
       new  aaa23fe   Move a logging test from actor_test to logging_test
       new  0e1fabc   Stop actor properly on failure
       new  01178f5   Replace 'UUID' with 'URN' in docstring to be consistent
       new  d62a309   Catch Exception instead of BaseException
       new  71cc295   Stop all actors on KeyboardInterrupt
       new  7d88138   Rename Actor.pre_start() to on_start()
       new  340f978   Rename Actor.post_stop() to on_stop()
       new  32656f6   Rename Actor.react() to on_receive()
       new  0762755   Release v0.12
       new  ca4a311   Catch SystemExit and shutdown all actors, just as with KeyboardInterrupt
       new  e8ababd   Split docs into multiple pages
       new  49d8de0   Create changelog
       new  d05956b   Fix pylint warning
       new  3841fef   Release v0.12.1
       new  e0d284e   Change development status from alpha to beta
       new  7517e7e   Fix typo in docs
       new  77e78f2   Register actors before they are started to avoid a race condition if the actor immediately stops itself
       new  c19d04c   Release v0.12.2
       new  42e617a   Turn on xUnit compatible report from nosetests
       new  6f6d765   Add pypy15 to tox config
       new  3580e2a   Fix stopping of actors from on_start() which left blocked threads behind
       new  8193ff6   Set thread name for all ThreadingActors to make actors visible among other threads
       new  13546e7   Add 'issue' extlink to Sphinx config
       new  e3e75ea   Add ActorRegistry.broadcast method (Fix #7)
       new  a52c2ff   Allow multiple unregistrations of same actor (Fix #5)
       new  7141376   Make actor_ref public directly on ActorProxy (fix #3)
       new  386a572   Make ActorRegistry.broadcast() work on Python 3
       new  3f3b159   Release v0.12.3
       new  e9f29fa   Make tests work without asserts that was new in Python 2.7/unittest2
       new  510a878   Make tests work without asserts that was new in Python 2.7/unittest2 part 2
       new  35695b0   Reverse order of shutdown in ActorRegistry.stop_all() (Fixes #8)
       new  87aae5f   Release v0.12.4
       new  94de3a5   Improve test coverage
       new  e0ffcf4   10x speedup of traversible attribute access
       new  7b66bf4   1.1x speedup of callable attribute access
       new  cb4a3d5   Make nosetests not run the performance measurement
       new  d2e4086   Add tests/__main__.py for running yappi on the test suite
       new  c28f74f   Release v0.13
       new  4f40477   Move Google Analytics code to <head>
       new  1087e18   Add library mocking trick from Read the Docs for building docs without dependencies
       new  04e5977   Improve the RTD dependency mock
       new  e93d4c2   Building docs no longer requires gevent
       new  4915dd6   Update copyright
       new  593d3ac   Move docs from GitHub Pages to Read The Docs
       new  0dc3f1c   Remove github target from docs Makefile
       new  5f04d0e   Remove custom Sphinx template not needed when using Read The Docs
       new  2201a46   tox: Remove python 3.1, upgrade pypy from 1.5 to 1.8
       new  049ec47   tox: gevent is no longer needed for building the docs
       new  01c206f   Turn of generation of HTML code coverage reports, as it breaks in Python 3.2
       new  22ab4bf   Make tests/performance.py work on Python 3
       new  5f33350   Add Travis CI config
       new  db1bfa0   Add mock to development requirements
       new  7ea4e13   Add coverage to development requirements
       new  9d486dc   Ignore gevent tests on Travis
       new  1d17d08   Don't look for tests in other dirs than tests/
       new  3e64195   Run nosetests in verbose mode in case a test hangs instead of failing properly
       new  97d58dd   Add timeouts and asserts around all threading.Event.wait() calls in tests
       new  da4fbab   Add __version__ to pykka module
       new  5a604f4   Remove now useless test
       new  cbabb73   Give Sphinx both a short and full version number
       new  e15c989   Add ActorRef.{tell,ask} and deprecate ActorRef.{send_one_way,send_request_reply}
       new  735c50a   Need to use ask() instead of tell() so that the call blocks til it is finished
       new  5d76a50   Don't do a deepcopy of objects set on ThreadingFuture objects
       new  6d9d674   Don't rely on threading.Event.wait() to return the event value, as this was added in Python 2.7
       new  838a912   Let Travis CI run Pykka's tests on PyPy
       new  8adbb4f   Don't include coverage in dev requirements by default. We manage fine without it
       new  689f6d5   Travis comes with nose and mock, so we can build without using requirements-dev.txt at all
       new  6a238f1   Revert to the previous setup, as PyPy builds on Travis seem broken
       new  649641f   Try to install gevent on Travis, to run the gevent tests as well
       new  47fc08d   Don't block gevent tests from running on Travis CI
       new  416344f   Fix all flake8 warnings
       new  40cb874   Revert efforts for running gevent tests on Travis
       new  f51cd97   Increase docs' readability by not using the fully qualified paths to the classes and methods talked about
       new  4cf7cd7   Fix wrong use of custom label in docs ref
       new  b10c394   Release v0.14
       new  22f8d25   Make futures raise exceptions with full traceback (fix #10)
       new  1cb62c2   Make reraising with tracebacks work on Python 3
       new  8f5029f   Fix Sphinx warning
       new  ef81842   Add Travis CI status image and link
       new  56b0788   Release v0.15
       new  eb75f01   Fix all pylint and flake8 warnings
       new  76c9306   Let actors access themselves through a proxy
       new  a045c22   Add requirements file for gevent 1.0b4
       new  59aaa31   Fix test teardown error when using gevent 1.0
       new  df8c2ae   Let tox use requirements files
       new  ca3029a   Don't threat Sphinx warnings as errors
       new  2fab34c   Run gevent tests only if gevent is available
       new  87a02ec   Turn of doctests, coverage, xunit reports
       new  f772100   Travis: Test on pypy
       new  5799dd9   Travis: Install gevent 1.0 on Python 2.x
       new  7a52f5e   Travis: Don't install duplicate dev dependencies
       new  b17b08d   docs: Add use case and usage example for self-proxying
       new  d8a9e66   docs: Add note on proxy creation speedup
       new  442061d   Make actors process inbox before stopping self
       new  4231eb3   docs: Fix Sphinx syntax error
       new  fc79ea6   Release v0.16
       new  f411296   docs: Avoid hashtag in Travis link
       new  5808d15   Make Actor.__init__() accept any arguments
       new  a8d9523   Document ActorRef.{actor_class,actor_inbox}
       new  f57906a   Fix all flake8 and pylint warnings
       new  f18f9e7   Formatting
       new  624c26b   Avoid overriding internal method in threading.Thread
       new  c9dfd56   Add Thread._stop fix to changelog
       new  49f9d9c   Move exceptions to its own file
       new  fe16e05   Remove pylint ignores not needed after pylint upgrade
       new  c40f3bd   Remove deprecated VERSION and get_version()
       new  cf102fc   Expose all classes/functions directly under the pykka.* namespace
       new  c6b9b6c   Update docs and examples to use pykka.* namespace
       new  8512759   Make examples run on Python 3.x
       new  949546a   Make actors has-a thread/greenlet instead of is-a thread/greenlet
       new  fdc5704   Revert "Avoid overriding internal method in threading.Thread"
       new  934ce51   Add methods to be implemented by subclasses to Actor
       new  0059c54   Update changelog, mark backwards incompatible changes
       new  61ee6f6   Require actors to call the superclass' __init__
       new  4f5239e   Remove deprecated send_one_way() and send_request_reply()
       new  f2a4495   Update examples with __init__() calls
       new  9ad4854   Update Actor.start() docs
       new  9caa5ff   Remove tests for deprecated and removed functions
       new  b129dfe   Formatting
       new  a03dcfb   Release v1.0.0
       new  e09e82c   Simplify testcase
       new  5fd9cbe   debian: Copy debian/ dir from old pykka-deb repo
       new  110845a   debian: Update Vcs-{Git,Browser} URLs
       new  b9cdf6f   debian: Add git-buildpackage config
       new  edbfdff   Base thread name on actor class name (fixes #12)
       new  c3a5b8f   Release v1.0.1
       new  e2be30d   Merge tag 'v1.0.1' into debian
       new  ef8f842   debian: New upstream release
       new  99e9691   debian: Fix git-buildpackage config filename
       new  9d3ec04   Fix on_start exception resulting in actor not being stopped
       new  2c1a1a5   Add note about on_start exception behavior
       new  503f1c1   Update changelog with on_start exception fix
       new  9e34ff7   Use verbose output to get name of hanging tests
       new  0ba9ed8   Move "started actor" log message
       new  26d5750   Test logging of exception in on_start
       new  fd5011c   Log exceptions in on_stop
       new  c3971a1   Log exceptions in on_failure
       new  f5c1841   Add support for using daemon threads (fixes #14)
       new  c4cdabf   Bump gevent dependency from 1.0b4 to 1.0rc2
       new  1a95b5b   tox: Run tests on Python 3.3 as well
       new  c7f16f4   pypi: Update short description
       new  88b8fb5   pypi: Bump dev status to stable
       new  77f8e99   pypi: Add more Python version/implementation classifiers
       new  88a0313   docs: Bump copyright year to 2013
       new  27dc6c0   docs: New introduction (fixes #15)
       new  faf414c   docs: 'proxies' is closer to the API than 'typed actors'
       new  4959a5c   docs: Fix typo in example
       new  d3388e2   Use own domain for web site
       new  6a809c0   docs: Fix typo
       new  1e59a2c   docs: Lower suggested logging threshold to DEBUG
       new  f3ce92f   Add helper for logging thread tracebacks (fix #17)
       new  7b5166a   docs: Change issue link format
       new  fcacc41   Release v1.1.0
       new  c09b0a3   Merge tag 'v1.1.0' into debian
       new  628d27c   New upstream release
       new  5712649   docs: Make README pure reStructuredText
       new  b1eff3e   tests: Use assertRaises more
       new  6d6dd21   futures: set() accepts a function to be called on get()
       new  1e7b391   futures: Add filter(), join(), map(), reduce()
       new  a3f6da3   Bump version number to v1.2.0a1
       new  9896d45   futures: Replace set(callback=...) with set_callback(...)
       new  8b86fec   Remove pylint exceptions
       new  76e9b2b   correct documentation of super class method calling
       new  929ef09   Merge pull request #20 from benjixx/small-doc-fix
       new  485be1a   Update URL to gevent tarball
       new  66f3b86   Update URL to gevent tarball
       new  a689a00   Refactor tests
       new  0c85fc0   tox config: Install gevent for Python 2.6 as well
       new  a67d6d2   Add eventlet support
       new  23dcd7e   travis: Add Python 3.3 build
       new  6fb323c   Merge remote-tracking branch 'jstasiak/eventlet' into develop
       new  088e85f   eventlet: README tweaks
       new  406c83e   eventlet: flake8 and style fixes
       new  b1ec002   eventlet: Add support for future callbacks
       new  f7a685b   docs: Add eventlet support to changelog
       new  44666da   Refactor replying to messages and add some documentation
       new  b1c8357   docs: Tweak README
       new  dde16c5   docs: Update changelog
       new  954daf8   Reply to messages left in actor inbox after it's stopped
       new  af22acd   Fix flake8 warnings
       new  ffc6aee   docs: Update changelog
       new  e3fd8d6   tox: Generate xunit test reports for Jenkins
       new  cd92bf0   travis: Reuse build steps from tox
       new  9b01975   travis: Install tox before using it
       new  b9a8847   tests: Reduce race condition between tests and log message recording
       new  5b35980   docs: Mark log_thread_tracebacks as new in 1.1
       new  cd1d87b   docs: Fix typo
       new  c20bba5   tests: Further reduce log message recording race condition
       new  d075dfc   tests: Wait for log messages for up to 5s, like all other test timeouts
       new  1433370   docs: Fix typo
       new  1cdbef0   Remove pylint exceptions
       new  65964f6   futures: Rename set_callback() to set_get_hook()
       new  552ad5c   futures: Fix variable name in docstring
       new  e04531c   futures: Raise exception if set() is called multiple times
       new  c8bbe63   ref: Async ask() now fails future instead of raising exception if actor is dead
       new  841c84e   ref: stop() defers alive-or-dead check to tell(), reducing the chance of the actor dying between the checks
       new  a24889c   docs: Fix errors
       new  c8ffd5f   tests: Reduce chance of race condition in logging tests
       new  d87d892   docs: Fix typo
       new  b623c0e   tests: Further reduce chance of race condition in logging tests
       new  d21f0fd   actor: Use a threading.Event to keep running state
       new  f54541c   ref: Use runnable flag in is_alive()
       new  87befa4   Remove redundant unicode_literals import
       new  e72dfc9   actor: Change flag from 'running' to 'stopped'
       new  6c22301   tests: Try to fix race condition
       new  c27da18   Release v1.2.0
       new  0230df8   Merge tag 'v1.2.0' into debian
       new  9860541   New upstream release
       new  c8ab201   Update development shapshot URL
       new  0a4d381   docs: Fix typo
       new  53586ba   debian: Convert to dh_python2
       new  bc48fed   debian: Clean up after distutils
       new  ec52e31   debian: Merge -doc package
       new  0bde443   debian: Bump debhelper compat to 8
       new  67d7a58   debian: Suggest gevent *or* eventlet
       new  6bea2e9   debian: Change Priority to extra
       new  16d25ab   debian: Build package for Python 3
       new  b78f59e   debian: Update copyright file, refer to common-licenses
       new  327cba8   debian: Use dh_sphinxdoc to build docs
       new  0704d32   debian: Make preinst symlink removal conditional
       new  2486440   debian: Include parts of Apache 2 license in copyright
       new  76108c9   debian: Upload to unstable
       new  e17071c   Fix error in docs example
       new  07d55f1   travis: Run flake8 as part of build
       new  4fc6552   tests: Remove unused import
       new  bf114ec   Fix ask parameters.
       new  3eeba87   Merge pull request #29 from fossilet/patch-1
       new  9c0782b   Bump gevent dependency from 1.0rc2 to 1.0rc3
       new  acf426d   setup: Use setuptools instead of distutils
       new  2b89401   setup: Build universal wheels
       new  675df19   Bump gevent dependency from 1.0rc3 to 1.0
       new  e0e79cb   Ignore *.egg-info created by setuptools
       new  1fdb72a   Include all files not ignored by Git in PyPI releases
       new  85d1500   docs: Bump copyright year
       new  5862bdd   tox: Inline dev deps
       new  66a0ba2   tox, travis: Record coverage information, submit to coveralls.io
       new  3d1153a   tox, travis: Move flake8 to its own tox env
       new  b231f02   travis: Test docs build
       new  9f31f97   docs: Add coveralls.io badge to README
       new  ddb128a   debug: Increase log level of thread traceback
       new  ec95b5a   travis: Turn on py34 testing
       new  59b31a4   docs: Strip down config
       new  c2c3d96   Ignore flake8 warning
       new  1228f79   docs: Use Shields.io badges
       new  1a166c9   docs: Fix PyPI badges
       new  c772647   setup: Add Python 3.4 Trove classifier
       new  5825852   debian: Change Priority from extra to optional
       new  cfc0710   debian: Bump Standards-Version to 3.9.5
       new  8648c4f   tox: Add pypy3 to envlist
       new  c5ad550   travis: Test on pypy3
       new  8c3e8b3   flake8: Add sane default config
       new  363a04b   tox: Run flake8 without arguments
       new  c179f49   tox: Add py34 to envlist
       new  ffddcec   Add list of development requirements
       new  b6e4d66   flake8: Check import order
       new  2638648   tests: Remove unused file
       new  30dca23   flake8: Fix import order warnings
       new  0937c84   Add __all__ to all modules
       new  fcc864d   Remove import hiding
       new  c02a173   Move Python 2/3 compat helpers to its own module
       new  45f1c08   Import directly from 'pykka' in tests
       new  cdbb89f   Move Threading{Actor,Future} to its own module
       new  18c78b6   docs: Link to Python docs
       new  0be5af6   Fix implicit relative import
       new  14043f2   String used as a message in documentation
       new  ee2ef72   Merge pull request #43 from chris-martin/documentation-ask-string
       new  1c3417d   Fix ask parameters. (cherry picked from commit bf114ec1290713eb91f1b6a48624e87bf9ea3182)
       new  b9d4589   docs: Bump copyright year
       new  d676038   docs: Add coveralls.io badge to README
       new  ac0466e   docs: Strip down config
       new  f8d8b2b   docs: Use Shields.io badges
       new  9bd4694   docs: Fix PyPI badges
       new  a850782   String used as a message in documentation
       new  547fdb8   Fix typo in future.__all__
       new  3e42fdf   Merge pull request #52 from mikegoodspeed/develop
       new  9cf761b   travis: Use new faster build infrastructure
       new  9d65ddf   autopep8: Add space after class signature/docstring
       new  3003747   flake8: ignore python2 compat code (in case flake8 is run in python3)
       new  c2fe371   Merge pull request #56 from tamland/flake8_py3_fix
       new  d4f55af   tox: Reduce duplication
       new  a3689cd   docs: Bump copyright year
       new  be90a6c   Bump version to 1.2.1
       new  61de415   docs: Update changelog for v1.2.1
       new  9c05f32   Release v1.2.1
       new  64b7fab   Merge tag 'v1.2.1' into debian
       new  37f6bad   debian: New upstream release
       new  10166c5   debian: Bump Standards-Version to 3.9.6
       new  ec13457   debian: Add Build-Depends on python-setuptools

The 472 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.


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



More information about the Python-modules-commits mailing list