Skip to content

Commit

Permalink
tag multiprocess-0.70.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Nov 3, 2020
1 parent 484a60e commit 7e59c11
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion py2.6/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
#

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py2.7/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# SUCH DAMAGE.
#

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py3.1/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# SUCH DAMAGE.
#

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py3.2/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# SUCH DAMAGE.
#

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py3.3/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Licensed to PSF under a Contributor Agreement.
#

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py3.4/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion py3.5/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion py3.6/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion py3.7/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion py3.8/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion py3.9/multiprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
from . import context

__version__ = '0.70.12.dev0'
__version__ = '0.70.11.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
unsupported = 'Versions of Python before 3.5 are not supported'
if unsupported:
raise ValueError(unsupported)
stable_version = '0.70.12'
stable_version = '0.70.11.1'
pymajor,pyminor = sys.version_info[:2]
pkgdir = 'py%s.%s' % (pymajor,pyminor)
if sys.version_info >= (2, 6):
Expand Down

0 comments on commit 7e59c11

Please sign in to comment.