Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ jobs:
- name: Checkout source
uses: actions/checkout@v2

- name: Set up Python 3.10
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"

- name: Install pypa/build
run: python -m pip install build wheel pyyaml
run: python -m pip install setuptools build wheel pyyaml

- name: Build distributions
shell: bash -l {0}
run: python setup.py sdist bdist_wheel

- name: Publish package to PyPI
if: github.repository == 'dask/dask-mpi' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8']
python: ['3.10', '3.11', '3.12', '3.13']
mpi: ['mpich', 'openmpi']
env:
PYTHON: ${{ matrix.python }}
Expand Down
3 changes: 1 addition & 2 deletions ci/env-mpich.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: dask-mpi-dev
channels:
- conda-forge
- defaults
- nodefaults
dependencies:
- dask>=2.19
- distributed>=2.19
- mpich
- mpi4py>=3.0.3
- pytest
- pytest-icdiff
- pytest-cov
- coverage
- requests
Expand Down
3 changes: 1 addition & 2 deletions ci/env-openmpi.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: dask-mpi-dev
channels:
- conda-forge
- defaults
- nodefaults
dependencies:
- dask>=2.19
- distributed>=2.19
- openmpi
- mpi4py>=3.0.3
- pytest
- pytest-icdiff
- pytest-cov
- coverage
- requests
Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python<3.12
- python<3.14
- dask>=2.19
- distributed>=2.19
- mpich
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def environment_dependencies(obj, dependencies=None):
license="BSD 3-Clause",
include_package_data=True,
install_requires=install_requires,
python_requires=">=3.6,<3.12",
python_requires=">=3.10",
packages=["dask_mpi"],
long_description=long_description,
entry_points="""
Expand Down
Loading