Skip to content

Commit

Permalink
tag multiprocess-0.70.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent ba597b1 commit 34616b6
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion py3.10/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.13.dev0'
__version__ = '0.70.12.1'

#
# Copy stuff from default context
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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.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.13.dev0'
__version__ = '0.70.12.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion pypy2.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.13.dev0'
__version__ = '0.70.12.1'

__all__ = [
'Process', 'current_process', 'active_children', 'freeze_support',
Expand Down
2 changes: 1 addition & 1 deletion pypy3.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.13.dev0'
__version__ = '0.70.12.1'

#
# Copy stuff from default context
Expand Down
2 changes: 1 addition & 1 deletion pypy3.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.13.dev0'
__version__ = '0.70.12.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 @@ -5,7 +5,7 @@
import sys
import glob

stable_version = '0.70.13'
stable_version = '0.70.12.1'

# drop support for older python
unsupported = None
Expand Down

0 comments on commit 34616b6

Please sign in to comment.