snakemake-interface-software-deployment-plugins 0.18.2__tar.gz → 0.18.4__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.

Potentially problematic release.


This version of snakemake-interface-software-deployment-plugins might be problematic. Click here for more details.

Files changed (17) hide show
  1. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/.gitignore +1 -0
  2. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/CHANGELOG.md +14 -0
  3. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/PKG-INFO +1 -1
  4. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/pyproject.toml +1 -1
  5. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/__init__.py +2 -1
  6. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/registry/__init__.py +2 -2
  7. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/.github/workflows/conventional-prs.yml +0 -0
  8. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/.github/workflows/release-please.yml +0 -0
  9. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/.github/workflows/test.yml +0 -0
  10. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/LICENSE +0 -0
  11. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/README.md +0 -0
  12. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/_common.py +0 -0
  13. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/registry/plugin.py +0 -0
  14. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/settings.py +0 -0
  15. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/snakemake_interface_software_deployment_plugins/tests.py +0 -0
  16. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/tests/test_interface.py +0 -0
  17. {snakemake_interface_software_deployment_plugins-0.18.2 → snakemake_interface_software_deployment_plugins-0.18.4}/tests/test_py37.py +0 -0
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.18.4](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.18.3...v0.18.4) (2026-07-24)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * close temp file after creation ([9fa7730](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/commit/9fa7730b2a4f305a9a2ae3f667f0e673c618d336))
9
+
10
+ ## [0.18.3](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.18.2...v0.18.3) (2026-06-26)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * load concrete Env/EnvSpec classes instead of abstract bases ([#58](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/issues/58)) ([78c2d62](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/commit/78c2d62c4a1f184b881f702d728da231b4ae1c0e))
16
+
3
17
  ## [0.18.2](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.18.1...v0.18.2) (2026-06-02)
4
18
 
5
19
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snakemake-interface-software-deployment-plugins
3
- Version: 0.18.2
3
+ Version: 0.18.4
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.2"
9
+ version = "0.18.4"
10
10
  requires-python = ">=3.11,<4.0"
11
11
  dependencies = [
12
12
  "argparse-dataclass >=2.0.0,<3.0",
@@ -394,9 +394,10 @@ class CacheableEnvBase(EnvBase, ABC):
394
394
  # This way, we benefit from rsync specific optimizations in network
395
395
  # filtesystems like GlusterFS (see
396
396
  # https://developers.redhat.com/blog/2018/08/14/improving-rsync-performance-with-glusterfs)
397
- _, tmp_cache_path = tempfile.mkstemp(
397
+ fd, tmp_cache_path = tempfile.mkstemp(
398
398
  prefix=asset, suffix=".part", dir=self.cache_path
399
399
  )
400
+ os.close(fd)
400
401
  tmp_cache_path = Path(tmp_cache_path)
401
402
  cache_path = self.cache_path / asset
402
403
  try:
@@ -37,8 +37,8 @@ class SoftwareDeploymentPluginRegistry(PluginRegistryBase):
37
37
  _name=name,
38
38
  common_settings=module.common_settings,
39
39
  _software_deployment_settings_cls=getattr(module, "Settings", None),
40
- _env_cls=module.EnvBase,
41
- _env_spec_cls=module.EnvSpecBase,
40
+ _env_cls=module.Env,
41
+ _env_spec_cls=module.EnvSpec,
42
42
  )
43
43
 
44
44
  def expected_attributes(self) -> Mapping[str, AttributeType]: