-
Notifications
You must be signed in to change notification settings - Fork 52
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
MAINT: Switch to a setup.cfg
-based setup
#375
Conversation
c8dbb47
to
988929c
Compare
9e34c4a
to
afb9fcc
Compare
6ae9c08
to
e741def
Compare
e741def
to
c4c6bf7
Compare
python3 -m pip install dist/*.tar.gz | ||
mkdir empty | ||
cd empty | ||
INSTALLED=$( python3 -c 'import niworkflows; print(niworkflows.__version__)' ) |
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.
This fails if we build and install from a wheel... I'm not sure why. Perhaps we need to upgrade wheel?
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.
I honestly have no clue
cdb9ffb
to
7dbcdfe
Compare
@oesteban This should be set. |
python3 -m pip install dist/*.tar.gz | ||
mkdir empty | ||
cd empty | ||
INSTALLED=$( python3 -c 'import niworkflows; print(niworkflows.__version__)' ) |
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.
I honestly have no clue
setup.cfg
-based setup
Validating installation methods and version stamping with Travis. Going to end up with a pretty big matrix (3 versions by 7 environments, at least), but for a project that a lot of our stuff depends on, I think it's worth it.
Closes #373.