snakemake-interface-software-deployment-plugins 0.16.2__tar.gz → 0.16.3__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.
Files changed (17) hide show
  1. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/CHANGELOG.md +7 -0
  2. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/PKG-INFO +1 -1
  3. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/pyproject.toml +1 -1
  4. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/__init__.py +1 -1
  5. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/.github/workflows/conventional-prs.yml +0 -0
  6. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/.github/workflows/release-please.yml +0 -0
  7. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/.github/workflows/test.yml +0 -0
  8. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/.gitignore +0 -0
  9. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/LICENSE +0 -0
  10. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/README.md +0 -0
  11. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/_common.py +0 -0
  12. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/registry/__init__.py +0 -0
  13. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/registry/plugin.py +0 -0
  14. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/settings.py +0 -0
  15. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/snakemake_interface_software_deployment_plugins/tests.py +0 -0
  16. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/tests/test_interface.py +0 -0
  17. {snakemake_interface_software_deployment_plugins-0.16.2 → snakemake_interface_software_deployment_plugins-0.16.3}/tests/test_py37.py +0 -0
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.16.3](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.16.2...v0.16.3) (2026-03-09)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * return Env class from EnvSpec ([4cecce6](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/commit/4cecce6a7f6271915e189ca7bb83f78cd51b76ab))
9
+
3
10
  ## [0.16.2](https://github.com/snakemake/snakemake-interface-software-deployment-plugins/compare/v0.16.1...v0.16.2) (2026-03-09)
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.16.2
3
+ Version: 0.16.3
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
  Author-email: Johannes Köster <johannes.koester@uni-due.de>
@@ -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.16.2"
9
+ version = "0.16.3"
10
10
  requires-python = ">=3.11,<4.0"
11
11
  dependencies = [
12
12
  "argparse-dataclass >=2.0.0,<3.0",
@@ -64,7 +64,7 @@ class EnvSpecBase(ABC):
64
64
  @classmethod
65
65
  def env_cls(cls) -> Type["EnvBase"]:
66
66
  try:
67
- return cls.module().EnvBase
67
+ return cls.module().Env
68
68
  except AttributeError:
69
69
  raise AttributeError(
70
70
  "No class Env found next to EnvSpec class. "