Skip to content

Commit

Permalink
template: add lockfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jul 2, 2024
1 parent 94bddbd commit 7572c37
Show file tree
Hide file tree
Showing 2 changed files with 358 additions and 1 deletion.
351 changes: 351 additions & 0 deletions template/pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ authors = [
]
dependencies = [
"amaranth >= 0.5, < 0.7",
"amaranth-boards",
"niar >= 0.1.1",
]
requires-python = ">=3.8"
Expand All @@ -17,6 +16,13 @@ license = {text = "BSD-2-Clause"}
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.dev-dependencies]
test = [
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards@main",
"pytest>=8.2.2",
"pytest-xdist>=3.6.1",
]

[tool.pytest.ini_options]
addopts = ["-n", "auto"]
testpaths = ["tests"]

0 comments on commit 7572c37

Please sign in to comment.