Skip to content

Commit

Permalink
Fix Cython installation
Browse files Browse the repository at this point in the history
  • Loading branch information
evelyn9191 committed Feb 3, 2020
1 parent b2b6ccc commit 333eea8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ python:

#cache: pip

install: "pip install ."
install: "pip install Cython && pip install ."

#jobs:
# include:
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
setup_requires=["setuptools>=18.0", "cython"],
install_requires=[
"setuptools>=18.0",
"pandas",
"networkx==1.11",
"pyshp",
"smopy",
"Cython",
"nose",
"six",
"geoindex",
"osmread==0.2",
Expand All @@ -45,8 +45,7 @@
"pyproj",
"matplotlib-scalebar==0.6.1",
],
tests_require=["nose"],
ext_modules=[Extension("gtfspy.routing.label", sources=["gtfspy/routing/label.pyx"],),],
ext_modules=[Extension("gtfspy.routing.label", sources=["gtfspy/routing/label.pyx"])],
keywords=[
"transit",
"routing" "gtfs",
Expand Down

0 comments on commit 333eea8

Please sign in to comment.