From 5cbf96a1949917d2227cba24a7924f8f1114db9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Wed, 22 Aug 2018 12:26:00 -0400 Subject: [PATCH 1/2] Add remark about binary wheels to README, thank Isuru [ci skip] --- README.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a1d9682..fa6bb56 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,11 @@ needing. Nonetheless, the FMMs and a fair bit of other useful stuff is accessibl Installation ------------ -To build this, you need +Binary wheels and source code are available from the `Python package index `_. +Thank you to `Isuru Fernando `_ for working on `infrastructure to build those wheels +`_. + +To build this from source, you need * `numpy `_ * `mako `_ (`pip `_ install mako or `ez_install mako`) -- GitLab From cd16306529e357f596fbdde9fe12f623607009ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Wed, 22 Aug 2018 12:27:41 -0400 Subject: [PATCH 2/2] Drop pytest dep --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 65da29f..afe6839 100644 --- a/setup.py +++ b/setup.py @@ -173,8 +173,8 @@ def main(): ], packages=["pyfmmlib"], - install_requires=[ - "pytest>=2", + setup_requires=[ + "numpy", ], ext_modules=[ Extension( -- GitLab