-
Notifications
You must be signed in to change notification settings - Fork 7
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
CI Updates #115
CI Updates #115
Conversation
This updates the makefile such that the targets can be used on the command line when developing and during the GHA when doing continuous integration (CI). Also, we fold the pre-commit GHA into the main testing, rather than having this a seprarate task. |
makefile
Outdated
conda create -n numba-rvsdg | ||
conda-install: | ||
conda install python=3.12 python-graphviz pyyaml pytest sphinx sphinx_rtd_theme coverage pre-commit | ||
pip install -U virtualenv |
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.
@esc I wonder if conda install virtualenv
will work too...
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 tried that, but when I use pip
I get virtualenv-20.26.1
anaconda.org only has 20.17.1
which seems to old.
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.
LGTM
As title
As title
Thank you for the review, I added two more snippets to update some dependencies and also making a note about the need for |
As title