-
Notifications
You must be signed in to change notification settings - Fork 10
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
skip conda in Makefile #91
Conversation
@echo " pep8 to run pep8 code style checks." | ||
@echo " test to run tests (but skip long running tests)." | ||
@echo " test-all to run all tests (including long running tests)." | ||
@echo " lint to run code style checks with flake8." |
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 is a welcome change. Some other projects include Black formatting. This leaves an opening for the discussion.
@@ -47,7 +47,9 @@ | |||
packages=find_packages(), | |||
include_package_data=True, | |||
install_requires=reqs, | |||
extra_requires=extra_reqs, | |||
extras_require={ | |||
"dev": dev_reqs, # pip install ".[dev]" |
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.
👍
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 agree with the approach. Conda loadout should happen through a .yaml configuration depending on the devops platform (Jenkins, Travis CI, Azure, etc.).
@Zeitsperre thanks for review :) |
Overview
This PR removes the conda environment handling from the Makefile. The conda environment needs to be created manually and is optional. This is a change already done in Twitcher and Birdy.
Changes:
setup.py
Related Issue / Discussion
Additional Information
When this is accepted I can update also the cookiecutter.