Skip to content
This repository was archived by the owner on Sep 23, 2019. It is now read-only.

Commit 9af96f6

Browse files
author
Cyrille Rossant
committed
NEW VERSION: 0.1.0.
1 parent 8ad0fca commit 9af96f6

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ The goal is to share common building blocks with other visualization libraries
2525
to use it in production for now.
2626

2727

28-
User survey
29-
-----------
30-
31-
[**We'd be very grateful if you could fill in this really short form if you're interested in Galry!**](https://docs.google.com/spreadsheet/viewform?formkey=dE5qZldRN3pvY2NEaXRhb2J4UDhoYWc6MQ#gid=0)
32-
33-
3428
Gallery
3529
-------
3630

@@ -61,7 +55,7 @@ Galry is licensed under the BSD license.
6155

6256
### Installation procedure
6357

64-
* [Download the package](http://galry.rossant.net/galry-0.1.0.rc1.zip).
58+
* [Download the package](https://github.com/rossant/galry/releases/download/v0.1.0/galry-0.1.0.zip).
6559
* Extract it.
6660
* Run in a console:
6761

galry/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727

2828
# from matplotlib.pyplot import imread
2929

30-
__version__ = '0.1.0.dev'
30+
__version__ = '0.1.0'

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
if __name__ == '__main__':
1414

1515
setup(
16+
zip_safe=False,
1617
name='galry',
17-
version='0.1.0.rc1',
18+
version='0.1.0',
1819
author='Cyrille Rossant',
1920
author_email='rossant@github',
2021
packages=['galry',
@@ -41,7 +42,7 @@
4142
description='High-performance interactive visualization in Python.',
4243
long_description=LONG_DESCRIPTION,
4344
install_requires=[
44-
"numpy >= 1.6",
45-
"PyOpenGL >= 3.0",
45+
# "numpy >= 1.6",
46+
# "PyOpenGL >= 3.0",
4647
],
4748
)

0 commit comments

Comments
 (0)