snakemake-interface-software-deployment-plugins 0.18.5__tar.gz → 0.18.6__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_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/CHANGELOG.md +7 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/PKG-INFO +1 -1
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/pyproject.toml +1 -1
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/__init__.py +1 -1
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/.github/workflows/conventional-prs.yml +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/.github/workflows/release-please.yml +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/.github/workflows/test.yml +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/.gitignore +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/LICENSE +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/README.md +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/_common.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/registry/__init__.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/registry/plugin.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/settings.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/snakemake_interface_software_deployment_plugins/tests.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/tests/test_interface.py +0 -0
- {snakemake_interface_software_deployment_plugins-0.18.5 → snakemake_interface_software_deployment_plugins-0.18.6}/tests/test_py37.py +0 -0
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.18.6](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.18.5...v0.18.6) (2026-08-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove suffixes from shell executable name ([e8bdc26](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/commit/e8bdc26a5fc7cf3d2a104ecfa1e0a21d9a3b4c2f))
|
|
9
|
+
|
|
3
10
|
## [0.18.5](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.18.4...v0.18.5) (2026-08-05)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snakemake-interface-software-deployment-plugins
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.6
|
|
4
4
|
Summary: This package provides a stable interface for interactions between Snakemake and its software deployment plugins.
|
|
5
5
|
Project-URL: repository, https://github.com/snakemake/snakemake-interface-software-deployment-plugins
|
|
6
6
|
Project-URL: homepage, https://snakemake.github.io
|
|
@@ -6,7 +6,7 @@ description = "This package provides a stable interface for interactions between
|
|
|
6
6
|
license = "MIT"
|
|
7
7
|
name = "snakemake-interface-software-deployment-plugins"
|
|
8
8
|
readme = "README.md"
|
|
9
|
-
version = "0.18.
|
|
9
|
+
version = "0.18.6"
|
|
10
10
|
requires-python = ">=3.11,<4.0"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"argparse-dataclass >=2.0.0,<3.0",
|
|
@@ -187,7 +187,7 @@ class ShellExecutable:
|
|
|
187
187
|
|
|
188
188
|
@property
|
|
189
189
|
def name(self) -> str:
|
|
190
|
-
return Path(self.executable).name
|
|
190
|
+
return Path(self.executable).with_suffix("").name
|
|
191
191
|
|
|
192
192
|
def run(self, cmd: str, **kwargs) -> sp.CompletedProcess:
|
|
193
193
|
return sp.run([self.executable] + self.args + [self.command_arg, cmd], **kwargs)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|