-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #440 from dyson-ai/feature/update_from_template
Feature/update from template
- Loading branch information
Showing
6 changed files
with
291 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ version = "1.29.0" | |
authors = [{ name = "Austin Gregg-Smith", email = "[email protected]" }] | ||
description = "A package for benchmarking the performance of arbitrary functions" | ||
readme = "README.md" | ||
license = "MIT" | ||
|
||
dependencies = [ | ||
"holoviews>=1.15,<=1.19.1", | ||
|
@@ -46,11 +47,6 @@ python = "3.11.*" | |
[tool.pixi.feature.py312.dependencies] | ||
python = "3.12.*" | ||
|
||
#an environment for launching vscode with rocker and deps_rocker | ||
[tool.pixi.feature.devenv] | ||
dependencies = { python = "3.10" } | ||
pypi-dependencies = { deps-rocker = ">=0.2" } | ||
tasks = { code = "scripts/launch_vscode.sh", code-nocache = "scripts/launch_vscode.sh --nocache" } | ||
|
||
[tool.pixi.pypi-dependencies] | ||
holobench = { path = ".", editable = true } | ||
|
@@ -60,9 +56,9 @@ test = [ | |
"black>=23,<=24.8.0", | ||
"pylint>=3.2.5,<=3.2.7", | ||
"pytest-cov>=4.1,<=5.0.0", | ||
"pytest>=7.4,<=8.3.2", | ||
"hypothesis>=6.104.2,<=6.111.2", | ||
"ruff>=0.5.0,<=0.6.3", | ||
"pytest>=7.4,<=8.3.3", | ||
"hypothesis>=6.104.2,<=6.112.1", | ||
"ruff>=0.5.0,<=0.6.5", | ||
"coverage>=7.5.4,<=7.6.1", | ||
] | ||
|
||
|
@@ -80,9 +76,6 @@ py310 = ["py310","test"] | |
py311 = ["py311","test"] | ||
py312 = ["py312","test"] | ||
|
||
devenv = { features = [ | ||
"devenv", | ||
], solve-group = "devenv", no-default-feature = true } | ||
|
||
[tool.pixi.tasks] | ||
success = "echo Success" | ||
|
@@ -118,7 +111,6 @@ update-from-template-repo = "./scripts/update_from_template.sh" | |
#demos | ||
demo = "python3 bencher/example/example_image.py" | ||
|
||
|
||
[tool.pylint] | ||
extension-pkg-whitelist = ["numpy", "scipy"] | ||
jobs = 16 #detect number of cores | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file describes the docker image and rocker extensions to load | ||
# Rockerc configuration: https://github.com/blooop/rockerc | ||
# | ||
# Key components: | ||
# - image: Specifies the base image to pass to rocker | ||
# - args: Lists additional features or tools to be added to the docker image | ||
|
||
image: ubuntu:22.04 | ||
args: | ||
- nvidia | ||
- x11 | ||
- user | ||
- pull | ||
- deps | ||
- git | ||
- lazygit | ||
- pixi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters