Skip to content

Commit

Permalink
update makefile to reflect poetry env chnage
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Nov 11, 2022
1 parent fa8fb2a commit 4f93dd1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ install:
poetry install

test:
pytest tests/*
poery run pytest tests/*

cleandist:
rm -rf dist/
Expand Down
14 changes: 10 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ packages = [
]


[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"

[tool.poetry.dependencies]
python = "^3.8"
linkml = "^1.3.13"
Expand All @@ -47,9 +52,10 @@ twine = "^4.0.1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.extras]
docs = ["Sphinx", "sphinxcontrib-mermaid"]
docs = ["Sphinx", "sphinxcontrib-mermaid"]

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"

0 comments on commit 4f93dd1

Please sign in to comment.