Skip to content

Commit

Permalink
tag: 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jan 28, 2024
1 parent 87501e8 commit 2884be0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ matrix:
env:
- MULTIPROCESS="true"

- python: 'pypy3.9-7.3.9' # at 7.3.13
- python: 'pypy3.9-7.3.9' # at 7.3.15
env:
- MULTIPROCESS="true"

- python: 'pypy3.10-7.3.13'
- python: 'pypy3.10-7.3.15'
env:
- MULTIPROCESS="true"

allow_failures:
- python: '3.13-dev'
- python: 'pypy3.10-7.3.13' # CI missing
- python: 'pypy3.10-7.3.15' # CI missing
fast_finish: true

cache:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ Requirements

* ``python`` (or ``pypy``), **>=3.8**
* ``setuptools``, **>=42**
* ``pox``, **>=0.3.3**
* ``dill``, **>=0.3.7**
* ``ppft``, **>=1.7.6.7**
* ``multiprocess``, **>=0.70.15**
* ``pox``, **>=0.3.4**
* ``dill``, **>=0.3.8**
* ``ppft``, **>=1.7.6.8**
* ``multiprocess``, **>=0.70.16**


More Information
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[egg_info]
tag_build = .dev0
#tag_build = .dev0

[bdist_wheel]
#python-tag = py3
#plat-name = manylinux_2_24_x86_64
#plat-name = manylinux_2_28_x86_64

[sdist]
#formats=zip,gztar
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ def has_ext_modules(foo):
return True

# define dependencies
ppft_version = 'ppft>=1.7.6.7'
dill_version = 'dill>=0.3.7'
pox_version = 'pox>=0.3.3'
mp_version = 'multiprocess>=0.70.15'
ppft_version = 'ppft>=1.7.6.8'
dill_version = 'dill>=0.3.8'
pox_version = 'pox>=0.3.4'
mp_version = 'multiprocess>=0.70.16'
pyina_version = 'pyina>=0.2.7'
mystic_version = 'mystic>=0.4.0'
# add dependencies
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/pathos/blob/master/LICENSE

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

Expand Down

0 comments on commit 2884be0

Please sign in to comment.