Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions conda-recipes/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
%PYTHON% -m pip install .
if errorlevel 1 exit 1
4 changes: 4 additions & 0 deletions conda-recipes/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

set -x
$PYTHON -m pip install .
33 changes: 33 additions & 0 deletions conda-recipes/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{% set VERSION_SUFFIX = "" %} # debug version suffix, appended to the version

package:
name: numba_rvsdg
# GIT_DESCRIBE_TAG may not be set
version: {{ "%s%s" % (environ.get('GIT_DESCRIBE_TAG', ''), VERSION_SUFFIX) }}

source:
# Using the local source tree helps test building without pushing changes
path: ../

build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}

requirements:
build:
- python
- setuptools
run:
- python >=3.11
- python-graphviz
- pyyaml

test:
requires:
- pytest
commands:
- pytest --pyargs numba_rvsdg

about:
home: https://github.com/numba/numba_rvsdg
license: Simplified BSD License
summary: TBD