Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,26 @@ schema_version: 1

context:
name: "mira-omf"
python_min: "3.12"
# Extract version from auto-generated _version.json
version: ${{ load_from_file("_version.json").version | trim }}
python_min: '3.12'
version: "${{ load_from_file('_version.json').version | trim }}"
module_name: omf

package:
name: ${{ name|lower }}
version: ${{ version }}
version: "${{ version }}"

source:
path: ../omf

build:
number: 1
noarch: python
script: ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
script:
env:
POETRY_DYNAMIC_VERSIONING_BYPASS: "${{ version }}"
content:
${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
python:
entry_points:
- geoh5_to_omf = omf.scripts.geoh5_to_omf:main
Expand Down
Loading