Skip to content

Commit

Permalink
tag: 0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jan 28, 2024
1 parent d6fa20b commit 4e5be2f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ matrix:
env:
- RDMAV_FORK_SAFE=1

- python: 'pypy3.9-7.3.9' # at 7.3.13
- python: 'pypy3.9-7.3.9' # at 7.3.15
env:
- RDMAV_FORK_SAFE=1

- python: 'pypy3.10-7.3.13'
- python: 'pypy3.10-7.3.15'
env:
- RDMAV_FORK_SAFE=1

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

cache:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ Requirements
* ``cython``, **>=0.29.30**
* ``numpy``, **>=1.0**
* ``mpi4py``, **>=1.3**
* ``dill``, **>=0.3.7**
* ``pox``, **>=0.3.3**
* ``pathos``, **>=0.3.1**
* ``dill``, **>=0.3.8**
* ``pox``, **>=0.3.4**
* ``pathos``, **>=0.3.2**


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 @@ -103,10 +103,10 @@ def has_ext_modules(foo):
return True

# define dependencies
dill_version = 'dill>=0.3.7'
pox_version = 'pox>=0.3.3'
pathos_version = 'pathos>=0.3.1'
mystic_version = 'mystic>=0.4.0'
dill_version = 'dill>=0.3.8'
pox_version = 'pox>=0.3.4'
pathos_version = 'pathos>=0.3.2'
mystic_version = 'mystic>=0.4.2'
cython_version = 'cython>=0.29.30' #XXX: required to build numpy from source
numpy_version = 'numpy>=1.0'
mpi4py_version = 'mpi4py>=1.3, !=3.0.2' # segfault 11 on MPI import
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/pyina/blob/master/LICENSE

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

Expand Down

0 comments on commit 4e5be2f

Please sign in to comment.