Skip to content

Commit 04a245a

Browse files
committed
prepare for 0.6
1 parent 8059084 commit 04a245a

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ https://github.com/monetdBSolutions/MonetDBe-Python/
77

88
For binary wheel installation you need:
99

10-
* Linux
10+
* Linux or OSX 10.13+
1111
* pip >= 19.3
1212
* Python >= 3.6
1313

14-
For non-binary wheel installation (Windows, OSX) you also (for now) need to
15-
have MonetDB installed.
14+
For non-binary wheel installation (Windows) you also need to have MonetDB installed.
1615

1716

1817
# install
@@ -33,7 +32,7 @@ $ cd MonetDB
3332
$ mkdir build
3433
$ cd build
3534
$ cmake .. -DCMAKE_INSTALL_PREFIX=<monetdb_prefix> -DINT128=ON -DPY3INTEGRATION=OFF
36-
$ make -j10 embedded install
35+
$ make install
3736
```
3837

3938
You can also compile monetdbe from the source folder:

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
tests_require = ['pytest', 'numpy', 'pandas']
6+
tests_require = ['pytest']
77

88
extras_require = {
9-
'numpy': ['numpy'],
10-
'pandas': ['pandas'],
11-
'full': ['numpy', 'pandas'],
129
'test': tests_require,
1310

1411
}
1512

1613
setuptools.setup(
1714
name="monetdbe",
18-
version="0.5",
15+
version="0.6",
1916
author="Gijs Molenaar",
2017
author_email="[email protected]",
2118
description="MonetDBe - the Python embedded MonetDB",
@@ -35,7 +32,7 @@
3532
setup_requires=["cffi>=1.0.0"],
3633
extras_require=extras_require,
3734
cffi_modules=["monetdbe/util/builder.py:ffibuilder"],
38-
install_requires=["cffi>=1.0.0"],
35+
install_requires=["cffi>=1.0.0", "numpy", "pandas"],
3936
tests_require=tests_require,
4037
test_suite="tests",
4138
)

0 commit comments

Comments
 (0)