Skip to content

Commit

Permalink
Fix Cython installation
Browse files Browse the repository at this point in the history
  • Loading branch information
evelyn9191 committed Mar 7, 2020
1 parent ca485c7 commit cdc1d99
Show file tree
Hide file tree
Showing 3 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 @@ -2,7 +2,7 @@ language: python
python:
- "3.8"

install: "pip install . pre-commit"
install: "pip install -r requirements-dev.txt && pip install . pre-commit"

jobs:
include:
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Cython
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@
],
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 @@ -46,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 cdc1d99

Please sign in to comment.