Skip to content

Commit 0dd88bf

Browse files
Merge pull request #54 from NovelaNeuro/user/acwikla/release_0.0.009.36
user/acwikla/release_0.0.009.36
2 parents acea495 + 46a7e17 commit 0dd88bf

File tree

8 files changed

+11
-13
lines changed

8 files changed

+11
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- 3.7.4
3+
- 3.6
44
install:
55
- sudo apt-get update
66
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh

docs/source/conf.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'NovelaDevops'
2323

2424
# The short X.Y version
25-
version = '0.0.009'
25+
version = '0.0.009.36'
2626

2727
# The full version, including alpha/beta/rc tags
2828
release = 'alpha'
@@ -75,9 +75,8 @@
7575
# CUSTOM CONFIGURATIONS ADDED BY THE NWB TOOL FOR GENERATING FORMAT DOCS
7676
###########################################################################
7777

78-
import textwrap # noqa: E402
79-
8078
import sphinx_rtd_theme # noqa: E402
79+
import textwrap # noqa: E402
8180

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

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- defaults
55
dependencies:
66
- pip
7-
- python>=3.6
7+
- python=3.6
88
- python-dateutil
99
- setuptools
1010
- hdmf==1.6.1

meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ build:
1212

1313
requirements:
1414
build:
15-
- python==3.6.0
15+
- python==3.6
1616
- setuptools
1717
- hdmf==1.6.1
1818
- python-dateutil
1919
- pynwb==1.3.0
2020
run:
21-
- python>=3.6.0
21+
- python>=3.6,<3.7
2222
- python-dateutil
2323
- hdmf==1.6.1
2424
- pynwb==1.3.0

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# -*- coding: utf-8 -*-
2-
version = "0.0.009"
2+
version = "0.0.009.36"
33
print(version)
44

55
import os
6-
from shutil import copy2
7-
86
from setuptools import setup, find_packages
7+
from shutil import copy2
98

109
# load README.md/README.rst file
1110
try:

spec/ndx-franklab-novela.namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ namespaces:
1313
- NWBDataInterface
1414
- ImageSeries
1515
- source: ndx-franklab-novela.extensions.yaml
16-
version: 0.0.009
16+
version: 0.0.009.36

src/pynwb/ndx_franklab_novela/spec/ndx-franklab-novela.namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ namespaces:
1313
- NWBDataInterface
1414
- ImageSeries
1515
- source: ndx-franklab-novela.extensions.yaml
16-
version: 0.0.009
16+
version: 0.0.009.36

src/spec/create_extension_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def main():
1010
ns_builder = NWBNamespaceBuilder(
1111
doc="""NovelaNeurotechnologies Namespaces""",
1212
name="""ndx-franklab-novela""",
13-
version="""0.0.009""",
13+
version="""0.0.009.36""",
1414
author=list(map(str.strip, """NovelaDevops""".split(','))),
1515
contact=list(map(str.strip, """[email protected]""".split(',')))
1616
)

0 commit comments

Comments
 (0)