Skip to content

Commit

Permalink
Tweaked conda config, bumped version to trigger a release
Browse files Browse the repository at this point in the history
  • Loading branch information
beveradb committed Dec 23, 2023
1 parent b74cf17 commit ec4cb0a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
8 changes: 3 additions & 5 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{% set name = "audio-separator" %}
{% set version = "0.9.6"%}

package:
name: "{{ name|lower }}"
version: "{{ version }}"
name: "audio-separator"
version: "0.10.0"

source:
path: ..
Expand All @@ -16,6 +13,7 @@ requirements:
host:
- python>=3.9
- pip
- poetry
run:
- python>=3.9

Expand Down
15 changes: 10 additions & 5 deletions environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ channels:
# be listed explicitly here.
- nodefaults
dependencies:
- python >=3.9
- mamba
- pip # pip must be mentioned explicitly, or conda-lock will fail
- poetry
- python>=3.9
- onnx>=1.14
- numpy>=1.23
- librosa>=0.9
- wget>=3
- six>=1.16
- pydub>=0.25
- pytorch
- torchaudio
- onnxruntime
- ffmpeg
- mamba # conda is too slow, so we use mamba
- pip # pip must be mentioned explicitly, or conda-lock will fail
- poetry # packaging
5 changes: 4 additions & 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.9.6"
version = "0.10.0"
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 Expand Up @@ -40,3 +40,6 @@ line-length = 140
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry2conda]
name = "audio-separator"

0 comments on commit ec4cb0a

Please sign in to comment.