Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PAN-1808] set wheel as default make target and update author #10

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
PYTHON_FILES := pantos/common scripts tests

.PHONY: wheel
wheel:
poetry build -f wheel

.PHONY: code
code: check format lint sort bandit test

Expand Down Expand Up @@ -43,10 +47,6 @@ test:
coverage:
poetry run python3 -m pytest --cov-report term-missing --cov=pantos tests

.PHONY: wheel
wheel:
poetry build -f wheel

.PHONY: clean
clean:
rm -r -f build/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pantos-common"
version = "1.1.0"
description = "Common code for Pantos off-chain components."
authors = ["Pantos <[email protected]>"]
authors = ["Pantos GmbH <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [
Expand Down