From 307713be09cae1a8c9ffaa93fa91e0b1fcd9bcb6 Mon Sep 17 00:00:00 2001 From: vincent Date: Thu, 21 Apr 2022 20:48:33 +0200 Subject: [PATCH] make makefile better, bump version --- .github/workflows/python.yml | 2 +- Makefile | 6 ++++-- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 082ae11..e45d758 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -27,7 +27,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: make setup + run: make install - name: Run test suite run: make tests diff --git a/Makefile b/Makefile index e2ddc48..46b29ad 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/pyproject.toml b/pyproject.toml index f283152..7aa1201 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "GNU GPLv3"