Skip to content

Commit

Permalink
poetry: Drop python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pmav99 committed May 5, 2023
1 parent ffca407 commit 15296ff
Show file tree
Hide file tree
Showing 6 changed files with 1,521 additions and 818 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ celerybeat.pid

# Environments
.env
.venv
.venv*
env/
venv/
ENV/
Expand Down
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ list:
@LC_ALL=C $(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | grep -E -v -e '^[^[:alnum:]]' -e '^$@$$'

init:
poetry install --with dev --with docs --with jupyter --sync
poetry install --with dev --sync -vvv
pre-commit install

style:
Expand All @@ -21,10 +21,13 @@ test:

cov:
coverage erase
python -m pytest --cov=thalassa --cov-report term-missing -n auto --durations=10 --record-mode=none
python -m pytest --cov=thalassa --cov-report term-missing --durations=10

docs:
make -C docs html
clean_notebooks:
pre-commit run nbstripout

exec_notebooks:
python -m nbconvert --to notebook --execute --stdout notebooks/* >/dev/null

deps:
pre-commit run poetry-lock -a
Expand Down
Loading

0 comments on commit 15296ff

Please sign in to comment.