Skip to content

Commit aa2c049

Browse files
Merge pull request #62 from NovelaNeuro/user/wmerynda/vesrion37
release 37
2 parents 88be391 + 7ae72f4 commit aa2c049

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

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
@@ -23,7 +23,7 @@
2323

2424
# The short X.Y version
2525

26-
version = '0.0.011.36'
26+
version = '0.0.011.37'
2727

2828

2929
# The full version, including alpha/beta/rc tags

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.4

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.4
1818
- python-dateutil
1919
- pynwb==1.3.3
2020
run:
21-
- python>=3.6,<3.7
21+
- python>=3.7
2222
- python-dateutil
2323
- hdmf==1.6.4
2424
- pynwb==1.3.3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
version = "0.0.011.36"
3+
version = "0.0.011.37"
44
print(version)
55

66
import os

spec/ndx-franklab-novela.namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ namespaces:
1414
- ImageSeries
1515
- source: ndx-franklab-novela.extensions.yaml
1616

17-
version: 0.0.011.36
17+
version: 0.0.011.37
1818

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
@@ -14,5 +14,5 @@ namespaces:
1414
- ImageSeries
1515
- source: ndx-franklab-novela.extensions.yaml
1616

17-
version: 0.0.011.36
17+
version: 0.0.011.37
1818

src/spec/create_extension_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def main():
1111
doc="""NovelaNeurotechnologies Namespaces""",
1212
name="""ndx-franklab-novela""",
1313

14-
version="""0.0.011.36""",
14+
version="""0.0.011.37""",
1515

1616
author=list(map(str.strip, """NovelaDevops""".split(','))),
1717
contact=list(map(str.strip, """[email protected]""".split(',')))

0 commit comments

Comments
 (0)