Skip to content

Commit 8728b02

Browse files
committed
python -m pip deps
1 parent 17eb3e5 commit 8728b02

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/build_latest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,14 @@ jobs:
6363
- name: Install python dependencies via pip
6464
run: |
6565
python -m pip install --upgrade pip
66-
pip install numpy cython cftime pytest twine wheel check-manifest mpi4py typing-extensions
66+
python -m pip pip install numpy cython cftime pytest twine wheel check-manifest mpi4py typing-extensions
6767
6868
- name: Install netcdf4-python
6969
run: |
7070
export PATH=${NETCDF_DIR}/bin:${PATH}
7171
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c-${NETCDF_VERSION}/plugins/plugindir
7272
python -m pip install .
73+
7374
- name: Test
7475
run: |
7576
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
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install python dependencies via pip
5252
run: |
5353
python -m pip install --upgrade pip
54-
pip install numpy cython cftime pytest twine wheel check-manifest mpi4py mypy types-setuptools typing-extensions
54+
python -m pip pip install numpy cython cftime pytest twine wheel check-manifest mpi4py mypy types-setuptools typing-extensions
5555
5656
- name: Install netcdf4-python
5757
run: |

.github/workflows/build_old.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,14 @@ jobs:
6363
- name: Install python dependencies via pip
6464
run: |
6565
python -m pip install --upgrade pip
66-
pip install numpy cython cftime pytest twine wheel check-manifest mpi4py typing-extensions
66+
python -m pip install numpy cython cftime pytest twine wheel check-manifest mpi4py typing-extensions
6767
6868
- name: Install netcdf4-python
6969
run: |
7070
export PATH=${NETCDF_DIR}/bin:${PATH}
7171
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c-${NETCDF_VERSION}/plugins/plugindir
7272
python -m pip install .
73+
7374
- name: Test
7475
run: |
7576
export PATH=${NETCDF_DIR}/bin:${PATH}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ license = {text = "MIT"}
2222
classifiers = [
2323
"Development Status :: 3 - Alpha",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
3030
"Intended Audience :: Science/Research",
3131
"License :: OSI Approved :: MIT License",
3232
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)