Skip to content

Commit

Permalink
[Release Prep] v0.1.1 for conda
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin931 committed Apr 17, 2023
1 parent 8cdf59d commit 7f368bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package:

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 91c1933836e8381a2ad7532f7d9639092d914745e43db14d27c3b7dd68af94b9
sha256: aad643a1a82162c3e9ee2072b57cdbef3493cf71ece106c31bba8798a4627c44

build:
noarch: python
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def finalize_options(self):


def run(self):
self.move_assets("./PyCytoData/data/", "./temp_assets/", [], True)
self.move_assets("./PyCytoData/data/", "../temp_assets/", [], True)
shutil.rmtree("./PyCytoData/data/")
try:
shutil.rmtree("dist_conda/")
Expand All @@ -81,8 +81,8 @@ def run(self):
os.system("conda build . --output-folder dist_conda/ -c bioconda")
os.system("anaconda upload ./dist_conda/noarch/pycytodata-{}-py_0.tar.bz2".format(VERSION))

self.move_assets("./temp_assets/", "./PyCytoData/data/", [], False)
shutil.rmtree("./temp_assets/")
self.move_assets("../temp_assets/", "./PyCytoData/data/", [], True)
shutil.rmtree("../temp_assets/")


setuptools.setup(
Expand Down

0 comments on commit 7f368bb

Please sign in to comment.