Skip to content

Commit 31e142f

Browse files
committed
Merge branch 'release/0.8.1'
2 parents 057467d + 944e5c7 commit 31e142f

File tree

16 files changed

+32
-43
lines changed

16 files changed

+32
-43
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ language: python
22

33
sudo: false
44

5+
branches:
6+
only:
7+
- master
8+
- develop
9+
510
# Setup databases
611
services:
712
- mongodb # port 27017 (default)

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
5+
0.8.1
6+
------------------
7+
_2016-02-11_
8+
9+
### Fixes
10+
- Fixed a bug in `setup.py` that prevented installation.
11+
12+
413
0.8.0
514
------------------
615
_2016-02-06_

MANIFEST.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
include README.rst LICENSE.md requirements.txt pyphi_config.yml redis.conf
1+
include README.rst
2+
include LICENSE.md
3+
include pyphi_config.yml
4+
include redis.conf

install_requirements.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

pyphi/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""PyPhi metadata"""
66

77
__title__ = 'pyphi'
8-
__version__ = '0.8.0'
8+
__version__ = '0.8.1'
99
__description__ = 'Python library for computing integrated information.'
1010
__author__ = 'Will Mayner'
1111
__author_email__ = 'wmayner@gmail.com'

pyphi/compute/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
# __init__.py
3+
# compute/__init__.py
44

55
"""Maintains backwards compatability with the old compute API."""
66

pyphi/compute/big_phi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
# big_phi.py
3+
# compute/big_phi.py
44

55
"""
66
Methods for computing concepts, constellations, and integrated information of

pyphi/compute/concept.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
# concept.py
3+
# compute/concept.py
44

55
import multiprocessing
66
from time import time

pyphi/compute/parallel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
# parallel.py
3+
# compute/parallel.py
44

55
import multiprocessing
66

pyphi/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
# __init__.py
3+
# models/__init__.py
44

55
from .big_phi import BigMip, _null_bigmip, _single_node_bigmip
66
from .concept import Mip, _null_mip, Mice, Concept, Constellation

0 commit comments

Comments
 (0)