Skip to content

Set minimal requirement of setuptools version >= 64.0.0 #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 4, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/pnetcdf_c_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:

- name: Install python dependencies via pip
run: |
python -m pip install --upgrade pip
pip install numpy cython cftime pytest twine wheel check-manifest
python -m pip install --upgrade pip setuptools wheel
pip install numpy cython cftime pytest twine check-manifest
export MPICC=$MPICH_DIR/bin/mpicc
pip install mpi4py
pip install torch torchvision
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pnetcdf_c_official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:

- name: Install python dependencies via pip
run: |
python -m pip install --upgrade pip
pip install numpy cython cftime pytest twine wheel check-manifest
python -m pip install --upgrade pip setuptools wheel
pip install numpy cython cftime pytest twine check-manifest
export MPICC=$MPICH_DIR/bin/mpicc
pip install mpi4py
pip install torch torchvision
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ applications that require parallel access to netCDF files.
### Developer Installation
* Clone this GitHub repository
* Make sure the above dependent software are installed.
* In addition, [Cython](http://cython.org/), [packaging](https://pypi.org/project/packaging/) and ['wheel'](https://pypi.org/project/wheel/) are required for developer installation.
* In addition, [Cython](http://cython.org/), [packaging](https://pypi.org/project/packaging/), [setuptools>=65](https://pypi.org/project/setuptools/) and [wheel](https://pypi.org/project/wheel/) are required for developer installation.
* Set the environment variable `PNETCDF_DIR` to PnetCDF's installation path.
* Make sure utility program `pnetcdf-config` is available in `$PNETCDF_DIR/bin`.
* Run command below to install.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/installation/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ Building PnetCDF-python from source
# use Python 3.9 or later
$ python -m venv env
$ source env/bin/activate
$ pip install --upgrade pip
$ pip install --upgrade pip setuptools wheel packaging

# install Python libraries
$ pip install numpy Cython setuptools wheel packaging
$ pip install numpy Cython
$ env CC=/path/to/mpicc pip install mpi4py

# download PnetCDF-python source code
Expand Down
Loading