Skip to content

Commit

Permalink
Change declaration of extras in test setup package
Browse files Browse the repository at this point in the history
  • Loading branch information
analog-cbarber committed Sep 17, 2023
1 parent ddb8660 commit 83f68fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ help:
DEV_INSTALL := $(CONDA_RUN) pip install -e . --no-deps --no-build-isolation

createdev:
conda env create -f environment.yml -n $(DEV_ENV)
conda env create -f environment.yml -n $(DEV_ENV) --yes
$(MAKE) dev-install

updatedev:
Expand Down
4 changes: 3 additions & 1 deletion test-projects/setup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
install_requires = [
"tables",
"wheel",
"black; extra == 'dev'",
],
extras_require = {
'bdev': [ 'black' ]
},
packages=["mypkg"]
)

0 comments on commit 83f68fa

Please sign in to comment.