Skip to content

Commit

Permalink
change version to 0.01
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandercwikla committed Feb 13, 2020
1 parent 7b9f00a commit e9a824e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion NEXTSTEPS.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ with information on where to find your NWB extension.
You may copy and modify the following YAML that was auto-generated:
```yaml
name: ndx-novela-namespace
version: 0.1.0
version: 0.0.1
src: https://github.com/NovelaDevops/ndx-novela-namespace
pip: https://pypi.org/project/ndx-novela-namespace/
license: BSD 3-Clause
Expand Down
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'NovelaDevops'

# The short X.Y version
version = '0.1.0'
version = '0.0.1'

# The full version, including alpha/beta/rc tags
release = 'alpha'
Expand Down Expand Up @@ -75,9 +75,10 @@
# CUSTOM CONFIGURATIONS ADDED BY THE NWB TOOL FOR GENERATING FORMAT DOCS
###########################################################################

import sphinx_rtd_theme # noqa: E402
import textwrap # noqa: E402

import sphinx_rtd_theme # noqa: E402

# -- Options for intersphinx ---------------------------------------------
intersphinx_mapping = {'core': ('https://nwb-schema.readthedocs.io/en/latest/', None)}

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-

import os
from shutil import copy2

from setuptools import setup, find_packages
from shutil import copy2

# load README.md/README.rst file
try:
Expand All @@ -22,7 +22,7 @@

setup_args = {
'name': 'ndx-novela-namespace',
'version': '0.1.0',
'version': '0.0.1',
'description': 'NovelaNeurotechnologies Namespaces',
'long_description': readme,
'long_description_content_type': readme_type,
Expand Down
2 changes: 1 addition & 1 deletion spec/ndx-novela-namespace.namespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ namespaces:
- Device
- NWBDataInterface
- source: ndx-novela-namespace.extensions.yaml
version: 0.1.0
version: 0.0.1
2 changes: 1 addition & 1 deletion src/spec/create_extension_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main():
ns_builder = NWBNamespaceBuilder(
doc="""NovelaNeurotechnologies Namespaces""",
name="""ndx-novela-namespace""",
version="""0.1.0""",
version="""0.0.1""",
author=list(map(str.strip, """NovelaDevops""".split(','))),
contact=list(map(str.strip, """devops@novelaneuro.com""".split(',')))
)
Expand Down

0 comments on commit e9a824e

Please sign in to comment.