# HG changeset patch # User Paul Boddie # Date 1482166665 -3600 # Node ID c3eaa33912995110dd4a4477677147b3e1c1a645 # Parent eaaedc7eaf626a8a0f78660c5a43f815091d1002 Updated copyright and release information. diff -r eaaedc7eaf62 -r c3eaa3391299 PKG-INFO --- a/PKG-INFO Mon Dec 19 17:55:21 2016 +0100 +++ b/PKG-INFO Mon Dec 19 17:57:45 2016 +0100 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: pprocess -Version: 0.5.1 +Version: 0.5.3 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.boddie.org.uk/python/pprocess.html -Download-url: http://www.boddie.org.uk/python/downloads/pprocess-0.5.1.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/pprocess-0.5.3.tar.gz Summary: Elementary parallel programming for Python License: LGPL (version 3 or later) Description: The pprocess module provides elementary support for parallel diff -r eaaedc7eaf62 -r c3eaa3391299 README.txt --- a/README.txt Mon Dec 19 17:55:21 2016 +0100 +++ b/README.txt Mon Dec 19 17:57:45 2016 +0100 @@ -189,6 +189,11 @@ available only on "UNIX"; it has only been tested repeatedly on a GNU/Linux system, and occasionally on systems running OpenSolaris. +New in pprocess 0.5.3 (Changes since pprocess 0.5.2) +---------------------------------------------------- + + * Added CPU core counting for Mac OS X, based on feedback from Kai Staats. + New in pprocess 0.5.2 (Changes since pprocess 0.5.1) ---------------------------------------------------- diff -r eaaedc7eaf62 -r c3eaa3391299 docs/COPYING.txt --- a/docs/COPYING.txt Mon Dec 19 17:55:21 2016 +0100 +++ b/docs/COPYING.txt Mon Dec 19 17:57:45 2016 +0100 @@ -1,7 +1,8 @@ Licence Agreement for parallel/pprocess --------------------------------------- -Copyright (C) 2005, 2006, 2007, 2008, 2009, 2013 Paul Boddie +Copyright (C) 2005, 2006, 2007, 2008, 2009, 2013, 2014, + 2015, 2016 Paul Boddie Copyright (C) 2013 Yaroslav Halchenko This program is free software; you can redistribute it and/or modify it under diff -r eaaedc7eaf62 -r c3eaa3391299 pprocess.py --- a/pprocess.py Mon Dec 19 17:55:21 2016 +0100 +++ b/pprocess.py Mon Dec 19 17:57:45 2016 +0100 @@ -22,7 +22,7 @@ with this program. If not, see . """ -__version__ = "0.5.1" +__version__ = "0.5.3" import os import sys diff -r eaaedc7eaf62 -r c3eaa3391299 setup.py --- a/setup.py Mon Dec 19 17:55:21 2016 +0100 +++ b/setup.py Mon Dec 19 17:57:45 2016 +0100 @@ -8,6 +8,6 @@ author = "Paul Boddie", author_email = "paul@boddie.org.uk", url = "http://www.boddie.org.uk/python/pprocess.html", - version = "0.5.1", + version = "0.5.3", py_modules = ["pprocess"] )