-
-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
need __version__.py if user needs to compile for their architecture or python version. #556
Conversation
…r python version.
The paths for some of the pyx files changed (to ./cython), and that has to change in the setup.py as well. Something that @r-akemii can take a look at? |
setup.py
Outdated
@@ -100,7 +100,7 @@ | |||
"aequilibrae.reference_files": ["spatialite.sqlite", "nauru.zip", "sioux_falls.zip", "coquimbo.zip"], | |||
"aequilibrae.paths": ["parameters.pxi", "*.pyx"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"aequilibrae.paths.cython": [".pix", ".pyx" "*.pxd"],
aequilibrae/__init__.py
Outdated
@@ -11,7 +11,7 @@ | |||
from aequilibrae import project | |||
|
|||
try: | |||
from aequilibrae.paths.AoN import path_computation | |||
from aequilibrae.paths.cython.AoN import path_computation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong. The extension is NOT built inside the cython folder
aequilibrae/paths/__init__.py
Outdated
@@ -9,14 +9,14 @@ | |||
from aequilibrae.paths.vdf import VDF | |||
from aequilibrae.paths.graph import Graph, TransitGraph | |||
from aequilibrae.paths.optimal_strategies import OptimalStrategies | |||
from aequilibrae.paths.public_transport import HyperpathGenerating | |||
from aequilibrae.paths.cython.public_transport import HyperpathGenerating |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again
@Jake-Moss , can you cleanup this mess we made? :-D |
Looks like I removed I'm not sure what's breaking because |
Remove paramaters.pxi, it was largely unused. Remove .pyx source from wheels (they weren't being included anyway, not sure why), it's not useful without our setup.py anyway. .pxd files are useful to others though. Remove __version__.py, not necessary
No description provided.