Skip to content

Commit 561949c

Browse files
committed
BF: making this install through pip/easy_install
The extras_require mechanism is more complicated than that...
1 parent f399cdd commit 561949c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pymatbridge/version.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
44
_version_major = 0
5-
_version_minor = 5
6-
_version_micro = 0#'' # use '' for first of series, number for 1 and above
7-
_version_extra = 'dev'
5+
_version_minor = 4
6+
_version_micro = 2#'' # use '' for first of series, number for 1 and above
7+
#_version_extra = dev'
88
#_version_extra = '' # Uncomment this for full releases
99

1010
# Construct full version string from these.
@@ -85,6 +85,6 @@
8585
"tests/*.py", "examples/*.ipynb"]}
8686

8787
REQUIRES = ['pyzmq']
88-
EXTRAS_REQUIRE = ['numpy', 'scipy', 'ipython']
88+
#EXTRAS_REQUIRE = ['numpy', 'scipy', 'ipython']
8989

9090
BIN=['scripts/publish-notebook']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def copy_bin(bin_path):
4949
packages=PACKAGES,
5050
package_data=PACKAGE_DATA,
5151
requires=REQUIRES,
52-
extras_require=EXTRAS_REQUIRE,
52+
#extras_require=EXTRAS_REQUIRE,
5353
scripts=BIN
5454
)
5555

0 commit comments

Comments
 (0)