From 2bb0e5db42bc59f99b22df3d08a19ad6b8b1a391 Mon Sep 17 00:00:00 2001 From: jkobject Date: Sun, 11 Aug 2024 19:28:07 +0200 Subject: [PATCH] now testing benGRN --- .github/workflows/main.yml | 4 ++-- Makefile | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3b4300a..84ef495 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,8 +56,8 @@ jobs: run: make test - name: "Upload coverage to Codecov" uses: codecov/codecov-action@v4 - # with: - # fail_ci_if_error: true + with: + token: ${{ secrets.CODECOV_TOKEN }} # #tests_mac: # needs: linter diff --git a/Makefile b/Makefile index 7bfe9dd..24e4a6a 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ show: ## Show the current environment. install: ## Install the project in dev mode. @if [ "$(USING_POETRY)" ]; then poetry install && exit; fi @echo "Don't forget to run 'make virtualenv' if you got errors." - $(ENV_PREFIX)pip install -e .[dev] + $(ENV_PREFIX)pip install -e '.[dev]' .PHONY: fmt fmt: ## Format code using black & isort. diff --git a/pyproject.toml b/pyproject.toml index f59a956..7177135 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bengrn" -version = "1.0.1" +version = "1.0.2" description = "benchmarking gene regulatory networks" authors = ["jkobject"] readme = "README.md"