snakemake-software-deployment-plugin-container 0.5.0__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/CHANGELOG.md +14 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/PKG-INFO +3 -3
- snakemake_software_deployment_plugin_container-0.5.2/pixi.lock +1464 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/pyproject.toml +7 -7
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/src/snakemake_software_deployment_plugin_container/__init__.py +12 -8
- snakemake_software_deployment_plugin_container-0.5.0/pixi.lock +0 -2015
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/.github/workflows/ci.yml +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/.github/workflows/conventional-prs.yml +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/.github/workflows/release-please.yml +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/.gitignore +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/LICENSE +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/README.md +0 -0
- {snakemake_software_deployment_plugin_container-0.5.0 → snakemake_software_deployment_plugin_container-0.5.2}/tests/test_plugin.py +0 -0
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.2](https://github.com/snakemake/snakemake-software-deployment-plugin-container/compare/v0.5.1...v0.5.2) (2026-03-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fix mount point handling ([d42e16a](https://github.com/snakemake/snakemake-software-deployment-plugin-container/commit/d42e16a8ba547897d976a3fa5b98ec9389cc4ab8))
|
|
9
|
+
|
|
10
|
+
## [0.5.1](https://github.com/snakemake/snakemake-software-deployment-plugin-container/compare/v0.5.0...v0.5.1) (2026-03-09)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* do not overwrite eq method of EnvSpec. The base class handles that. ([ded0dac](https://github.com/snakemake/snakemake-software-deployment-plugin-container/commit/ded0dacdab9363bd24abeffe9a590515a72ae62a))
|
|
16
|
+
|
|
3
17
|
## [0.5.0](https://github.com/snakemake/snakemake-software-deployment-plugin-container/compare/v0.4.0...v0.5.0) (2026-03-08)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snakemake-software-deployment-plugin-container
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Project-URL: repository, https://github.com/snakemake/snakemake-software-deployment-plugin-container
|
|
5
5
|
Project-URL: documentation, https://snakemake.github.io/snakemake-plugin-catalog/plugins/software-deployment/container.html
|
|
6
6
|
Author-email: Ben Carrillo <ben.uzh@pm.me>, Johannes Köster <johannes.koester@uni-due.de>
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Python: <4.0,>=3.11
|
|
9
|
-
Requires-Dist: snakemake-interface-common<2.0.0,>=1.
|
|
10
|
-
Requires-Dist: snakemake-interface-software-deployment-plugins<1.0,>=0.
|
|
9
|
+
Requires-Dist: snakemake-interface-common<2.0.0,>=1.23.0
|
|
10
|
+
Requires-Dist: snakemake-interface-software-deployment-plugins<1.0,>=0.16.0
|
|
11
11
|
Requires-Dist: udocker<2.0.0,>=1.3.17
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
|