Skip to content

Commit

Permalink
releash: only watch ipyvolume directory, and produce universal wheen
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Sep 13, 2018
1 parent fba7dc7 commit 2401af1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .releash.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
gitpush = ReleaseTargetGitPush()


filenames_python = glob.glob('*')
filenames_python.remove('js')
filenames_python.remove('notebooks')
filenames_python = ['ipyvolume']
package_python = add_package(".", "py", distribution_name='ipyvolume', filenames=filenames_python)

version_python = VersionSource(package_python, '{path}/ipyvolume/_version.py')
Expand All @@ -16,7 +14,7 @@
package_python.version_targets.append(VersionTarget(package_python, '{path}/ipyvolume/_version.py'))

package_python.release_targets.append(gittag)
package_python.release_targets.append(ReleaseTargetSourceDist(package_python))
package_python.release_targets.append(ReleaseTargetSourceDist(package_python, universal_wheel=True))
#core.release_targets.append(gitpush)
package_python.release_targets.append(ReleaseTargetCondaForge(package_python, '../feedstocks/ipyvolume-feedstock'))

Expand Down

0 comments on commit 2401af1

Please sign in to comment.