Commit 3b981907 authored by Sang Ik Lee's avatar Sang Ik Lee Committed by Scott Cyphers

Fix incorrect requirements. (#661)

parent eb5f6cce
numpy==1.13.1
six
numpy
typing
......@@ -227,11 +227,8 @@ class BuildExt(build_ext):
build_ext.build_extensions(self)
requirements = [
"setuptools",
"six",
"numpy"
]
with open('requirements.txt') as req:
requirements = req.read().splitlines()
setup(
......
......@@ -238,11 +238,8 @@ class BuildExt(build_ext):
build_ext.build_extensions(self)
requirements = [
"setuptools",
"six",
"numpy",
]
with open('${CMAKE_SOURCE_DIR}/requirements.txt') as req:
requirements = req.read().splitlines()
setup(
......
pytest
numpy==1.13.1
tox
flake8
flake8-commas
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment