Skip to content

Commit 17e101c

Browse files
committed
fix: dependencies, scipy stats namespace
1 parent 3740e46 commit 17e101c

File tree

4 files changed

+119
-214
lines changed

4 files changed

+119
-214
lines changed

Makefile

+3-7
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ run: ## run the main script
6565
##@ Testing
6666

6767
.PHONY: tests
68-
tests: scm-version ## run tests with pytest
68+
tests: ## run tests with pytest
6969
@poetry run pytest --doctest-modules
7070

7171
.PHONY: tests-cov
72-
tests-cov: scm-version ## run tests with pytest and show coverage (terminal + html)
72+
tests-cov: ## run tests with pytest and show coverage (terminal + html)
7373
@poetry run pytest --doctest-modules --cov=src --cov-report term-missing --cov-report=html
7474

75-
.PHONY: scm-version tests-cov-fail
75+
.PHONY: tests-cov-fail
7676
tests-cov-fail: ## run unit tests with pytest and show coverage (terminal + html) & fail if coverage too low & create files for CI
7777
@poetry run pytest --doctest-modules --cov=src --cov-report term-missing --cov-report=html --cov-fail-under=80 --junitxml=pytest.xml | tee pytest-coverage.txt
7878

@@ -123,9 +123,6 @@ prerelease-noop: ## release a pre-release without changing anything
123123
prerelease-ci: ## release a pre-release in CI
124124
@poetry run semantic-release publish --prerelease -v DEBUG -D commit_author="github-actions <action@github.com>"
125125

126-
scm-version: ## returns the version from the setuptools_scm
127-
@poetry run python -m setuptools_scm
128-
129126
build: ## build the package
130127
@poetry build
131128

@@ -188,6 +185,5 @@ init-project: install-copier install-precommit-hooks ## initialize the project (
188185
init-git: ## initialize git
189186
@git init
190187

191-
192188
reinit-project: install-copier ## reinitialize the project
193189
@copier --answers-file .copier-config.yaml gh:entelecheia/hyperfast-python-template .

0 commit comments

Comments
 (0)