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 typing
...@@ -227,11 +227,8 @@ class BuildExt(build_ext): ...@@ -227,11 +227,8 @@ class BuildExt(build_ext):
build_ext.build_extensions(self) build_ext.build_extensions(self)
requirements = [ with open('requirements.txt') as req:
"setuptools", requirements = req.read().splitlines()
"six",
"numpy"
]
setup( setup(
......
...@@ -238,11 +238,8 @@ class BuildExt(build_ext): ...@@ -238,11 +238,8 @@ class BuildExt(build_ext):
build_ext.build_extensions(self) build_ext.build_extensions(self)
requirements = [ with open('${CMAKE_SOURCE_DIR}/requirements.txt') as req:
"setuptools", requirements = req.read().splitlines()
"six",
"numpy",
]
setup( setup(
......
pytest pytest
numpy==1.13.1
tox tox
flake8 flake8
flake8-commas 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