File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2626 with :
2727 python-version : ${{ env.python-version }}
2828
29+ - name : " Check py.typed file is included in wheel"
30+ shell : bash -l {0}
31+ run : unzip -l dist/*.whl | grep -q py.typed
32+
2933 test :
3034 runs-on : ubuntu-latest
3135 timeout-minutes : 10
Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ Next release (in development)
1212* Add :attr: `.Convention.bounds ` and :attr: `.Convention.geometry ` attributes (:pr: `83 `).
1313* Fix a number of numpy warnings about unsafe casts (:pr: `85 `).
1414* Follow CF Conventions properly when finding latitude / longitude coordinate variables (:issue: `84 `, :pr: `86 `)
15+ * Include a ``py.typed `` file in built packages (:issue: `80 `, :pr: `87 `).
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ install_requires =
3535where = src
3636include = emsarray*
3737
38+ [options.package_data]
39+ emsarray = py.typed
40+
3841[options.extras_require]
3942plot =
4043 cartopy >=0.21.1
You can’t perform that action at this time.
0 commit comments