Skip to content

Commit

Permalink
Merge pull request #11 from spapa013:main
Browse files Browse the repository at this point in the history
fix __version__ in setup.py
  • Loading branch information
spapa013 authored Dec 4, 2021
2 parents 88b4a9d + bddf4d3 commit 7ca6d07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@

# Schema creation
schema = dj.schema(schema_obj.value)
schema.spawn_missing_classes()
schema.spawn_missing_classes()
schema.connection.dependencies.load()
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

# Schema creation
schema = dj.schema(schema_obj.value)
# schema.spawn_missing_classes()
schema.spawn_missing_classes()
schema.connection.dependencies.load()

@schema
class Materialization(dj.Manual):
Expand Down
2 changes: 1 addition & 1 deletion python/microns-materialization/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def find_api(name):

setup(
name='microns_materialization',
version='0.0.1',
version=__version__,
description='Datajoint schemas for importing external data for the MICrONS project',
author='Stelios Papadopoulos',
author_email='[email protected]',
Expand Down

0 comments on commit 7ca6d07

Please sign in to comment.