Skip to content

Commit 030c9be

Browse files
author
Sequoia Ploeg
committed
Fix package name
1 parent 6cd29c9 commit 030c9be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ serve:
2626
cd docs/_build/html && python3 -m http.server
2727

2828
format:
29-
black pal
29+
black src/pyrolab
3030

3131
mypy:
32-
mypy -p pal
32+
mypy -p src/pyrolab
3333

3434
# lint:
3535
# flake8 .
@@ -62,7 +62,7 @@ major:
6262
bumpversion major
6363

6464
release:
65-
VERSION=$(shell python3 -c "import pal; print(pal.__version__)") && \
65+
VERSION=$(shell python3 -c "import pyrolab; print(pyrolab.__version__)") && \
6666
echo Releasing version $$VERSION && \
6767
TAG_NAME=v$$VERSION && \
6868
git push origin $$TAG_NAME

0 commit comments

Comments
 (0)