We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7645bca + 5beeead commit b500705Copy full SHA for b500705
1 file changed
recipe.yaml
@@ -4,6 +4,7 @@ context:
4
name: "simpeg-drivers"
5
version: "0.0.0.dev0" # This will be replaced by the actual version in the build process
6
python_min: "3.10"
7
+ module_name: ${{ name|lower|replace("-", "_") }}
8
9
package:
10
name: ${{ name|lower }}
@@ -58,14 +59,14 @@ requirements:
58
59
tests:
60
- python:
61
imports:
62
+ - ${{ module_name }}
63
+ - ${{ module_name }}._version
64
- dask
65
- distributed
66
- geoapps_utils
67
- geoh5py
68
- grid_apps
69
- simpeg
- - simpeg_drivers
- - simpeg_drivers._version
70
pip_check: true
71
72
- script:
@@ -77,6 +78,10 @@ tests:
77
78
source:
79
- tests/
80
81
+ - package_contents:
82
+ files:
83
+ - site-packages/${{ module_name }}/_version.py
84
+
85
about:
86
license: MIT
87
license_file:
0 commit comments