Skip to content

Commit 7048893

Browse files
authored
Merge pull request #55 from NovelaNeuro/user/acwikla/release_0.0.009.37
2 parents 0dd88bf + 9bd4ee0 commit 7048893

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-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.6
3+
- 3.7
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

conda_upload.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ echo "Building conda package..."
1111
conda build . -c conda-forge --no-include-recipe || exit 1
1212

1313
echo "Move conda package..."
14-
mv ${CONDA_BUILD_PATH}/linux-64/${PKG_NAME}-${VERSION}-py36_0.tar.bz2 ${CONDA_BUILD_PATH} || exit 1
14+
mv ${CONDA_BUILD_PATH}/linux-64/${PKG_NAME}-${VERSION}-py37_0.tar.bz2 ${CONDA_BUILD_PATH} || exit 1
1515

1616
echo "Making new_tar dir..."
1717
mkdir ${CONDA_BUILD_PATH}/new_tar || exit 1
1818

1919
echo "Extracting conda package..."
20-
tar -xf ${CONDA_BUILD_PATH}/${PKG_NAME}-${VERSION}-py36_0.tar.bz2 -C ${CONDA_BUILD_PATH}/new_tar || exit 1
20+
tar -xf ${CONDA_BUILD_PATH}/${PKG_NAME}-${VERSION}-py37_0.tar.bz2 -C ${CONDA_BUILD_PATH}/new_tar || exit 1
2121

2222
cd ${CONDA_BUILD_PATH}/new_tar || exit 1
2323

2424
echo "Creating new conda package without some files..."
25-
tar -cjvf ${PKG_NAME}-${VERSION}-py36_0.tar.bz2 --exclude='*.sh' --exclude='*.cfg' --exclude='*.pyc'--exclude='*.pytest_cache' --exclude='*.gitignore' info lib || exit 1
25+
tar -cjvf ${PKG_NAME}-${VERSION}-py37_0.tar.bz2 --exclude='*.sh' --exclude='*.cfg' --exclude='*.pyc'--exclude='*.pytest_cache' --exclude='*.gitignore' info lib || exit 1
2626

2727
cd ..
2828

2929
echo "Move conda package to linux dir..."
30-
mv new_tar/${PKG_NAME}-${VERSION}-py36_0.tar.bz2 linux-64 || exit 1
30+
mv new_tar/${PKG_NAME}-${VERSION}-py37_0.tar.bz2 linux-64 || exit 1
3131

3232
echo "Converting conda package..."
3333
conda convert --platform osx-64 $CONDA_BUILD_PATH/linux-64/***.tar.bz2 --output-dir $CONDA_BUILD_PATH -q || exit 1

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
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.36'
25+
version = '0.0.009.37'
2626

2727
# The full version, including alpha/beta/rc tags
2828
release = 'alpha'

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.7
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
15+
- python==3.7
1616
- setuptools
1717
- hdmf==1.6.1
1818
- python-dateutil
1919
- pynwb==1.3.0
2020
run:
21-
- python>=3.6,<3.7
21+
- python>=3.7
2222
- python-dateutil
2323
- hdmf==1.6.1
2424
- pynwb==1.3.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
version = "0.0.009.36"
2+
version = "0.0.009.37"
33
print(version)
44

55
import os

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.36
16+
version: 0.0.009.37

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.36
16+
version: 0.0.009.37

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.36""",
13+
version="""0.0.009.37""",
1414
author=list(map(str.strip, """NovelaDevops""".split(','))),
1515
contact=list(map(str.strip, """[email protected]""".split(',')))
1616
)

0 commit comments

Comments
 (0)