Skip to content

Commit

Permalink
Adjusted conda build process
Browse files Browse the repository at this point in the history
  • Loading branch information
beveradb committed Dec 27, 2023
1 parent 18c668e commit d3f31ee
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
2 changes: 2 additions & 0 deletions conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy:
- 1.26
36 changes: 20 additions & 16 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
{% set pyproject = load_file_data('pyproject.toml') %}
{% set poetry = pyproject.get('tool', {}).get('poetry') %}
package:
name: "audio-separator"
version: "0.10.1"
name: {{ poetry.get('name') }}
version: {{ poetry.get('version') }}

about:
home: {{ poetry.get('homepage') }}
license: {{ poetry.get('license') }}
summary: {{ poetry.get('description') }}
description: |
Audio Separator is a Python package that allows you to separate an audio file into two stems, primary and secondary, using a model in the ONNX format trained by @Anjok07 for use with UVR (https://github.com/Anjok07/ultimatevocalremovergui).
doc_url: {{ poetry.get('documentation') }}
dev_url: {{ poetry.get('homepage') }}

extra:
recipe-maintainers:
- beveradb

source:
path: ..

build:
number: 0
script: poetry install
script: pip install . -vv --no-deps --no-build-isolation

requirements:
host:
- python>=3.9
- pip
- poetry
- llvm
- llvmlite
run:
- python>=3.9

about:
home: "https://github.com/karaokenerds/python-audio-separator"
license: "MIT"
license_family: MIT
summary: "Easy to use vocal separation on CLI or as a python package, using the amazing MDX-Net models from UVR."
description: |
Audio Separator is a Python package that allows you to separate an audio file into two stems, primary and secondary, using a model in the ONNX format trained by @Anjok07 for use with UVR (https://github.com/Anjok07/ultimatevocalremovergui).
doc_url: "https://github.com/karaokenerds/python-audio-separator"
dev_url: "https://github.com/karaokenerds/python-audio-separator"

extra:
recipe-maintainers:
- beveradb
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "audio-separator"
version = "0.10.0"
version = "0.10.1"
description = "Easy to use vocal separation on CLI or as a python package, using the amazing MDX-Net models from UVR trained by @Anjok07"
authors = ["Andrew Beveridge <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit d3f31ee

Please sign in to comment.