Skip to content

Commit

Permalink
releash+setup.py: added vaex-jupyter and vaex-distributed
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Dec 14, 2017
1 parent 771943e commit 3ae2791
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .releash.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
#core.release_targets.append(gitpush)
core.release_targets.append(ReleaseTargetCondaForge(core, '../feedstocks/vaex-core-feedstock'))

packages = ['vaex-core', 'vaex-viz', 'vaex-hdf5', 'vaex-server', 'vaex-astro', 'vaex-ui', 'vaex-jupyter', 'vaex-distributed']
names = [k[5:] for k in packages[1:]]

for name in ['hdf5', 'viz', 'astro', 'server', 'ui']:
for name in names:
# hdf5 package
package = add_package("packages/vaex-" + name, "vaex-" +name, 'vaex.' + name)
version = VersionSource(package, '{path}/vaex/' +name +'/_version.py')
Expand All @@ -28,5 +30,6 @@
package.release_targets.append(ReleaseTargetSourceDist(package))
# also ok to add twice, it will only execute for the last package
package.release_targets.append(gitpush)
#package.release_targets.append(ReleaseTargetCondaForge(core, '../feedstocks/vaex-' + name + '-feedstock'))
if name in ['hdf5', 'viz']:
package.release_targets.append(ReleaseTargetCondaForge(core, '../feedstocks/vaex-' + name + '-feedstock'))

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def cwd(path):

# inspired by https://blog.shazam.com/python-microlibs-5be9461ad979

packages = ['vaex-core', 'vaex-viz', 'vaex-hdf5', 'vaex-server', 'vaex-astro', 'vaex-ui']
packages = ['vaex-core', 'vaex-viz', 'vaex-hdf5', 'vaex-server', 'vaex-astro', 'vaex-ui', 'vaex-jupyter', 'vaex-distributed']
# run pip twice, once to upgrade but not the deps
# and then make sure it get the deps
pip_args = 'install -e .'.split()
Expand Down

0 comments on commit 3ae2791

Please sign in to comment.