snakemake-interface-software-deployment-plugins 0.7.1__tar.gz → 0.7.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.
Files changed (10) hide show
  1. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/PKG-INFO +1 -1
  2. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/pyproject.toml +1 -1
  3. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/tests.py +2 -1
  4. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/LICENSE +0 -0
  5. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/README.md +0 -0
  6. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/__init__.py +0 -0
  7. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/_common.py +0 -0
  8. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/registry/__init__.py +0 -0
  9. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/registry/plugin.py +0 -0
  10. {snakemake_interface_software_deployment_plugins-0.7.1 → snakemake_interface_software_deployment_plugins-0.7.2}/snakemake_interface_software_deployment_plugins/settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: snakemake-interface-software-deployment-plugins
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: This package provides a stable interface for interactions between Snakemake and its software deployment plugins.
5
5
  License: MIT
6
6
  Author: Johannes Köster
@@ -5,7 +5,7 @@ license = "MIT"
5
5
  name = "snakemake-interface-software-deployment-plugins"
6
6
  packages = [{include = "snakemake_interface_software_deployment_plugins"}]
7
7
  readme = "README.md"
8
- version = "0.7.1"
8
+ version = "0.7.2"
9
9
 
10
10
  [tool.poetry.dependencies]
11
11
  argparse-dataclass = "^2.0.0"
@@ -136,7 +136,8 @@ class TestSoftwareDeploymentBase(ABC):
136
136
  spec = deepcopy(self.get_env_spec())
137
137
  for attr in spec.source_path_attributes():
138
138
  source_file = getattr(spec, attr)
139
- source_file.cached = source_file.path_or_uri
139
+ if source_file is not None:
140
+ source_file.cached = source_file.path_or_uri
140
141
  return spec
141
142
 
142
143
  def _get_env(self, tmp_path) -> EnvBase: