-
Notifications
You must be signed in to change notification settings - Fork 1
fix: update to latest interface #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9f70146
fix: update to latest interface
johanneskoester f43a6e0
migrate to pixi
johanneskoester 5ba379a
fix
johanneskoester 567346c
dbg
johanneskoester c960c82
fix
johanneskoester f8d3425
fix
johanneskoester eaabff1
dbg
johanneskoester 6158ea5
dbg
johanneskoester 583d4c4
dbg
johanneskoester 465da23
dbg
johanneskoester f1cf2cb
dbg
johanneskoester 8695c83
dbg
johanneskoester 45b4c0e
dbg
johanneskoester bcbbdaf
dbg
johanneskoester 2f110b1
bump interface
johanneskoester 29c130b
dbg
johanneskoester 6295b0e
bump interface
johanneskoester 2da27f9
fix
johanneskoester 80786ea
fmt
johanneskoester File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,26 +1,67 @@ | ||
| [project] | ||
| name = "snakemake-software-deployment-plugin-envmodules" | ||
| version = "0.1.4" | ||
| description = "" | ||
| authors = [{ name = "Johannes Köster", email = "johannes.koester@uni-due.de" }] | ||
| description = "Software deployment plugin for Snakemake using environment modules." | ||
| readme = "README.md" | ||
| requires-python = ">=3.11,<4.0" | ||
| dependencies = ["snakemake-interface-software-deployment-plugins >=0.6.1,<1.0.0"] | ||
| repository = "https://github.com/your/plugin" | ||
| dependencies = [ | ||
| "snakemake-interface-common (>=1.17.4,<2.0.0)", | ||
| "snakemake-interface-software-deployment-plugins (>=0.7.7,<1.0)", | ||
| ] | ||
|
|
||
| [tool.pixi.pypi-dependencies] | ||
| snakemake-software-deployment-plugin-envmodules = { path = ".", editable = true } | ||
| #snakemake-interface-software-deployment-plugins = { path = "../snakemake-interface-software-deployment-plugins", editable = true } | ||
|
|
||
| [project.urls] | ||
| repository = "https://github.com/snakemake/snakemake-software-deployment-plugin-envmodules" | ||
| documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/software-deployment/envmodules.html" | ||
| [[project.authors]] | ||
| name = "Johannes Koester" | ||
| email = "johannes.koester@uni-due.de" | ||
|
|
||
| [build-system] | ||
| requires = [ "poetry-core>=2.0.0,<3.0.0",] | ||
| build-backend = "poetry.core.masonry.api" | ||
|
|
||
| [tool.poetry] | ||
| [[tool.poetry.packages]] | ||
| include = "snakemake_software_deployment_plugin_envmodules" | ||
| from = "src" | ||
|
|
||
| [tool.poetry.group.dev.dependencies] | ||
| coverage = "^7.6.12" | ||
| pytest = "^8.3.5" | ||
| ruff = "^0.9.9" | ||
| requires = ["hatchling"] | ||
| build-backend = "hatchling.build" | ||
|
|
||
| [tool.pixi.project] | ||
| channels = ["conda-forge"] | ||
| platforms = ["osx-arm64", "linux-64"] | ||
|
|
||
| [tool.pixi.environments] | ||
| dev = { features = ["dev"] } | ||
| publish = { features = ["publish"] } | ||
|
|
||
| [tool.pixi.feature.dev.dependencies] | ||
| pytest = ">=8.3.5,<9" | ||
| ruff = ">=0.10.0,<0.11" | ||
| pytest-cov = ">=6.0.0,<7" | ||
|
|
||
| [tool.pixi.feature.dev.tasks] | ||
| format = "ruff format" | ||
| lint = "ruff check" | ||
| qc = { depends-on = ["format", "lint"] } | ||
| coverage-report = "coverage report -m" | ||
|
|
||
| [tool.pixi.feature.dev.tasks.test] | ||
| cmd = [ | ||
| "pytest", | ||
| "--cov=snakemake_software_deployment_plugin_envmodules", | ||
| "--cov-report=xml:coverage-report/coverage.xml", | ||
| "--cov-report=term-missing", | ||
| "tests/test_plugin.py", | ||
| ] | ||
|
|
||
| [tool.coverage.report] | ||
| exclude_lines = ["pass", "\\.\\.\\."] | ||
| fail_under = 70.0 | ||
|
|
||
| # Publish | ||
| [tool.pixi.feature.publish.dependencies] | ||
| twine = ">=6.1.0,<7" | ||
| python-build = ">=1.2.2,<2" | ||
|
|
||
|
|
||
| [tool.pixi.feature.publish.tasks] | ||
| build = { cmd = "python -m build", description = "Build the package into the dist/ directory" } | ||
| check-build = { cmd = "python -m twine check dist/*", depends-on = [ | ||
| "build", | ||
| ], description = "Check that the package can be uploaded" } |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.