Skip to content

Commit 0ad6a3f

Browse files
Merge pull request #59 from NovelaNeuro/user/wmerynda/version36
User/wmerynda/version36
2 parents 155d3c7 + 2aaee12 commit 0ad6a3f

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

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}-py37_0.tar.bz2 ${CONDA_BUILD_PATH} || exit 1
14+
mv ${CONDA_BUILD_PATH}/linux-64/${PKG_NAME}-${VERSION}-py36_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}-py37_0.tar.bz2 -C ${CONDA_BUILD_PATH}/new_tar || exit 1
20+
tar -xf ${CONDA_BUILD_PATH}/${PKG_NAME}-${VERSION}-py36_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}-py37_0.tar.bz2 --exclude='*.sh' --exclude='*.cfg' --exclude='*.pyc'--exclude='*.pytest_cache' --exclude='*.gitignore' info lib || exit 1
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
2626

2727
cd ..
2828

2929
echo "Move conda package to linux dir..."
30-
mv new_tar/${PKG_NAME}-${VERSION}-py37_0.tar.bz2 linux-64 || exit 1
30+
mv new_tar/${PKG_NAME}-${VERSION}-py36_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.010.37'
26+
version = '0.0.010.36'
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.7
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.7
15+
- python==3.6
1616
- setuptools
1717
- hdmf==1.6.1
1818
- python-dateutil
1919
- pynwb==1.3.0
2020
run:
21-
- python>=3.7
21+
- python>=3.6,<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,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
version = "0.0.010.37"
3+
version = "0.0.010.36"
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.010.37
17+
version: 0.0.010.36
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.010.37
17+
version: 0.0.010.36
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.010.37""",
14+
version="""0.0.010.36""",
1515

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

0 commit comments

Comments
 (0)