Skip to content

Commit

Permalink
Changing conda recipe to use pip install and not setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
mnshgl0110 committed May 21, 2024
1 parent 96f99d0 commit 3322d35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source:

build:
number: 0
script: "{{ PYTHON }} setup.py install --single-version-externally-managed --record=record.txt"
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv"

requirements:
build:
Expand Down
2 changes: 1 addition & 1 deletion syri/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.7.0"
__version__ = "1.7.0"

0 comments on commit 3322d35

Please sign in to comment.