We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f09daa commit f31148dCopy full SHA for f31148d
1 file changed
.github/workflows/ci-tests.yml
@@ -96,6 +96,17 @@ jobs:
96
env_name: ${{ env.ENV_NAME }}
97
install_packages: "cartopy nox pip"
98
99
+ - name: "install latest cfpint"
100
+ run: |
101
+ conda install -y pint
102
+ git clone https://github.com/SciTools/cfpint.git ./cfpint
103
+ mkdir -p ~/.local/lib/python${{ matrix.python-version }}/site-packages
104
+ echo $(readlink -f ./cfpint/src) >~/.local/lib/python${{ matrix.python-version }}/site-packages/cfpint.pth
105
+
106
+ - name: "confirm cfpint install"
107
108
+ python -c "import cfpint; print(cfpint); print(cfpint.Unit)"
109
110
- name: "conda info"
111
run: |
112
conda info
0 commit comments