Skip to content

Commit

Permalink
Merge branch '0.6.x' into 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Mar 1, 2015
2 parents c26ec9c + 06897c3 commit e046f1f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion reprounzip-docker/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ our `documentation <http://reprozip.readthedocs.org/>`_.
ReproZip is currently being developed at `NYU <http://engineering.nyu.edu/>`_. The team includes:

* `Fernando Chirigati <http://vgc.poly.edu/~fchirigati/>`_
* `Rémi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Remi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Dennis Shasha <http://cs.nyu.edu/shasha/>`_
* `Juliana Freire <http://vgc.poly.edu/~juliana/>`_
4 changes: 3 additions & 1 deletion reprounzip-docker/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
import os
from setuptools import setup

Expand All @@ -6,7 +7,8 @@
os.chdir(os.path.abspath(os.path.dirname(__file__)))


with open('README.rst') as fp:
# Need to specify encoding for PY3, which has the worse unicode handling ever
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='0.6',
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-vagrant/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ our `documentation <http://reprozip.readthedocs.org/>`_.
ReproZip is currently being developed at `NYU <http://engineering.nyu.edu/>`_. The team includes:

* `Fernando Chirigati <http://vgc.poly.edu/~fchirigati/>`_
* `Rémi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Remi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Dennis Shasha <http://cs.nyu.edu/shasha/>`_
* `Juliana Freire <http://vgc.poly.edu/~juliana/>`_
4 changes: 3 additions & 1 deletion reprounzip-vagrant/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
import os
from setuptools import setup

Expand All @@ -6,7 +7,8 @@
os.chdir(os.path.abspath(os.path.dirname(__file__)))


with open('README.rst') as fp:
# Need to specify encoding for PY3, which has the worse unicode handling ever
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='0.6',
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-vistrails/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ our `documentation <http://reprozip.readthedocs.org/>`_.
ReproZip is currently being developed at `NYU <http://engineering.nyu.edu/>`_. The team includes:

* `Fernando Chirigati <http://vgc.poly.edu/~fchirigati/>`_
* `Rémi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Remi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Dennis Shasha <http://cs.nyu.edu/shasha/>`_
* `Juliana Freire <http://vgc.poly.edu/~juliana/>`_
4 changes: 3 additions & 1 deletion reprounzip-vistrails/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
import os
from setuptools import setup
import sys
Expand All @@ -7,7 +8,8 @@
os.chdir(os.path.abspath(os.path.dirname(__file__)))


with open('README.rst') as fp:
# Need to specify encoding for PY3, which has the worse unicode handling ever
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
req = [
'reprounzip>=0.5',
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ our `documentation <http://reprozip.readthedocs.org/>`_.
ReproZip is currently being developed at `NYU <http://engineering.nyu.edu/>`_. The team includes:

* `Fernando Chirigati <http://vgc.poly.edu/~fchirigati/>`_
* `Rémi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Remi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Dennis Shasha <http://cs.nyu.edu/shasha/>`_
* `Juliana Freire <http://vgc.poly.edu/~juliana/>`_
2 changes: 1 addition & 1 deletion reprozip/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ our `documentation <http://reprozip.readthedocs.org/>`_.
ReproZip is currently being developed at `NYU <http://engineering.nyu.edu/>`_. The team includes:

* `Fernando Chirigati <http://vgc.poly.edu/~fchirigati/>`_
* `Rémi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Remi Rampin <https://www.linkedin.com/profile/view?id=98448601>`_
* `Dennis Shasha <http://cs.nyu.edu/shasha/>`_
* `Juliana Freire <http://vgc.poly.edu/~juliana/>`_
4 changes: 3 additions & 1 deletion reprozip/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
import os
import platform
from setuptools import setup, Extension
Expand Down Expand Up @@ -32,7 +33,8 @@
sources=sources,
libraries=libraries)

with open('README.rst') as fp:
# Need to specify encoding for PY3, which has the worse unicode handling ever
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
req = [
'PyYAML',
Expand Down

0 comments on commit e046f1f

Please sign in to comment.