Skip to content

Commit cd5e5fc

Browse files
committed
fix latest pip egg deprecation
1 parent 29eb0c6 commit cd5e5fc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
export PATH=${NETCDF_DIR}/bin:${PATH}
7171
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c-${NETCDF_VERSION}/plugins/plugindir
72-
python setup.py install
72+
python -m pip install .
7373
- name: Test
7474
run: |
7575
export PATH=${NETCDF_DIR}/bin:${PATH}

.github/workflows/build_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
export PATH=${NETCDF_DIR}/bin:${PATH}
5959
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c/plugins/plugindir
60-
python setup.py install
60+
python -m pip install .
6161
6262
- name: Test
6363
run: |

.github/workflows/build_old.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
export PATH=${NETCDF_DIR}/bin:${PATH}
7171
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c-${NETCDF_VERSION}/plugins/plugindir
72-
python setup.py install
72+
python -m pip install .
7373
- name: Test
7474
run: |
7575
export PATH=${NETCDF_DIR}/bin:${PATH}

0 commit comments

Comments
 (0)