-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from vincentclaes/fix-makefile
make makefile better, bump version
- Loading branch information
Showing
3 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
|
||
setup: | ||
install: | ||
pip3 install --upgrade pip | ||
pip3 install poetry --upgrade | ||
poetry install | ||
# poetry shell | ||
|
||
setup: install | ||
poetry shell | ||
|
||
tests: | ||
poetry run pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "stepview" | ||
version = "0.1.1" | ||
version = "0.2.1" | ||
description = "1 global view of all your stepfunctions statemachines" | ||
authors = ["vincent <[email protected]>"] | ||
license = "GNU GPLv3" | ||
|