Skip to content

Commit f199f26

Browse files
committed
Switch to poetry, notebook 6.0+
1 parent f7c11a3 commit f199f26

File tree

7 files changed

+1452
-659
lines changed

7 files changed

+1452
-659
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,6 @@ generated/
9696
# Node
9797
node_modules/
9898

99-
# Pipenv
100-
.venv/
99+
# venv
100+
.venv/
101+
pip-wheel-metadata/

Makefile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ clean: ## Make a clean source tree
1111
rm -rf $(PKG_NAME)/__pycache__ __pycache__
1212
rm -rf *.egg-info node_modules/ lib/ dist/
1313

14-
pipenv: ## Make a pipenv development environment
15-
pipenv --python 3.7
16-
PIPENV_VENV_IN_PROJECT=true pipenv sync --dev
14+
poetry: ## Make a local poetry install
15+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
1716

18-
shell: ## Make a pipenv shell
19-
pipenv shell
17+
venv: ## Make a virtual env with poetry
18+
poetry install
19+
20+
shell: ## Make a shell in the venv with poetry
21+
poetry shell
2022

2123
build: ## Make an install of the frontend and server extensions
2224
jlpm install

Pipfile

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)