lockss-turtles 0.6.0.dev7__tar.gz → 0.6.0.dev8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lockss-turtles
3
- Version: 0.6.0.dev7
3
+ Version: 0.6.0.dev8
4
4
  Summary: Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin registries
5
5
  License: BSD-3-Clause
6
6
  Author: Thib Guicherd-Callin
@@ -28,7 +28,7 @@
28
28
 
29
29
  [project]
30
30
  name = "lockss-turtles"
31
- version = "0.6.0-dev7" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
31
+ version = "0.6.0-dev8" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
32
32
  description = "Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin registries"
33
33
  license = { text = "BSD-3-Clause" }
34
34
  readme = "README.rst"
@@ -5,7 +5,7 @@ Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin
5
5
  registries.
6
6
  """
7
7
 
8
- __version__ = '0.6.0-dev7'
8
+ __version__ = '0.6.0-dev8'
9
9
 
10
10
  __copyright__ = '''
11
11
  Copyright (c) 2000-2025, Board of Trustees of Leland Stanford Jr. University
@@ -91,7 +91,7 @@ class BasePluginSetBuilder(BaseModelWithRoot, ABC):
91
91
  return getattr(self, 'test')
92
92
 
93
93
  def _plugin_path(self, plugin_id: PluginIdentifier) -> Path:
94
- return self.get_main_path().joinpath(Plugin.id_to_file(plugin_id))
94
+ return self.get_main().joinpath(Plugin.id_to_file(plugin_id))
95
95
 
96
96
 
97
97
  class AntPluginSetBuilder(BasePluginSetBuilder):
@@ -165,8 +165,8 @@ class AntPluginSetBuilder(BasePluginSetBuilder):
165
165
  raise FileNotFoundError(str(jar_path))
166
166
  return jar_path, orig_plugin
167
167
 
168
- def _plugin_path(self, plugin_id: PluginIdentifier) -> Path:
169
- return self.get_main_path().joinpath(Plugin.id_to_file(plugin_id))
168
+ # def _plugin_path(self, plugin_id: PluginIdentifier) -> Path:
169
+ # return self.get_main().joinpath(Plugin.id_to_file(plugin_id))
170
170
 
171
171
  def _sanitize(self, called_process_error: subprocess.CalledProcessError) -> subprocess.CalledProcessError:
172
172
  cmd = called_process_error.cmd[:]