Skip to content

Commit

Permalink
tag multiprocess-0.70.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent 0267853 commit 77f2a1c
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ recursive-include py2.5 *
recursive-include py2.6 *
recursive-include py2.7 *
recursive-include py3.1 *
recursive-include py3.10 *
recursive-include py3.2 *
recursive-include py3.3 *
recursive-include py3.4 *
Expand All @@ -14,6 +15,9 @@ recursive-include py3.6 *
recursive-include py3.7 *
recursive-include py3.8 *
recursive-include py3.9 *
recursive-include pypy2.7 *
recursive-include pypy3.6 *
recursive-include pypy3.7 *
include .*
prune .git
prune .coverage
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.12'

__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.12'

__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.12'

__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.12.dev0'
__version__ = '0.70.12'

#
# 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.12.dev0'
__version__ = '0.70.12'

__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.12'

__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.12'

#
# 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.12'

#
# 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.12'

#
# 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.12'

#
# 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.12'

#
# 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.12'

#
# 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.12.dev0'
__version__ = '0.70.12'

__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.12.dev0'
__version__ = '0.70.12'

#
# 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.12.dev0'
__version__ = '0.70.12'

#
# Copy stuff from default context
Expand Down

0 comments on commit 77f2a1c

Please sign in to comment.