Skip to content

Commit

Permalink
Consolidate dev requirements in project template
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Luis Cano Rodríguez <juan_luis_cano@mckinsey.com>
  • Loading branch information
astrojuanlu committed May 23, 2023
1 parent 5cd8009 commit 54e34ae
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
Expand Up @@ -64,7 +64,7 @@ After this, if you'd like to update your project requirements, please update `py
Jupyter, JupyterLab, and IPython are not included in the project requirements by default. To install them, run the following command:

```
pip install -r dev-requirements.txt
pip install -e .[dev]
```

### Jupyter
Expand Down

This file was deleted.

Expand Up @@ -26,6 +26,20 @@ docs = [
"Jinja2<3.1.0",
"myst-parser~=0.17.2",
]
dev = [
"black~=22.0",
"flake8>=3.7.9, <5.0",
"ipython>=7.31.1, <8.0; python_version < '3.8'",
"ipython~=8.10; python_version >= '3.8'",
"isort~=5.0",
"jupyter~=1.0",
"jupyterlab_server>=2.11.1, <2.16.0",
"jupyterlab~=3.0, <3.6.0",
"nbstripout~=0.4",
"pytest-cov~=3.0",
"pytest-mock>=1.7.1, <2.0",
"pytest~=7.2",
]

[tool.setuptools.dynamic]
version = {attr = "{{ cookiecutter.python_package }}.__version__"}
Expand Down

0 comments on commit 54e34ae

Please sign in to comment.