Skip to content

Commit

Permalink
tag: 0.70.17
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Sep 30, 2024
1 parent 6dbeb6c commit c1431fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Requirements

* ``python`` (or ``pypy``), **>=3.8**
* ``setuptools``, **>=42**
* ``dill``, **>=0.3.8**
* ``dill``, **>=0.3.9**


Basic Usage
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[egg_info]
tag_build = .dev0
#tag_build = .dev0

[bdist_wheel]
#python-tag = py3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def has_ext_modules(foo):
return True

# define dependencies
dill_version = 'dill>=0.3.8'
dill_version = 'dill>=0.3.9'

def run_setup(with_extensions=True):
extensions = []
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License: 3-clause BSD. The full license text is available at:
# - https://github.com/uqfoundation/multiprocess/blob/master/LICENSE

__version__ = '0.70.17.dev0'
__version__ = '0.70.17'#.dev0'
__author__ = 'Mike McKerns'
__contact__ = '[email protected]'

Expand Down

1 comment on commit c1431fe

@tvalentyn
Copy link

@tvalentyn tvalentyn commented on c1431fe Nov 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @mmckerns - is there a strong reason for multiprocess to require a lower bound on dill?
This is causing dependency resolution conflicts for some of Apache Beam users since, as you are well aware , we are currently stuck with dill 0.3.1.1

Please sign in to comment.