python-ort 0.1.3__tar.gz → 0.1.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 python-ort might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-ort
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A Python Ort model serialization library
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -7,7 +7,7 @@ packages = ["src/ort"]
7
7
 
8
8
  [project]
9
9
  name = "python-ort"
10
- version = "0.1.3"
10
+ version = "0.1.4"
11
11
  description = "A Python Ort model serialization library"
12
12
  readme = "README.md"
13
13
  license = "MIT"
@@ -24,9 +24,9 @@ class OrtAnalyzerConfigurations(BaseModel):
24
24
  model_config = ConfigDict(
25
25
  extra="forbid",
26
26
  )
27
- allow_dynamic_versions: bool | None = Field(None, alias="allowDynamicVersions")
28
- enabled_package_managers: list[OrtPackageManagers] | None = Field(None, alias="enabledPackageManagers")
29
- disabled_package_managers: list[OrtPackageManagers] | None = Field(None, alias="disabledPackageManagers")
30
- package_managers: OrtPackageManagerConfigurations | None = Field(None, alias="packageManagers")
31
- sw360_configuration: Sw360Configuration | None = Field(None, alias="sw360Configuration")
32
- skip_excluded: bool | None = Field(None, alias="skipExcluded")
27
+ allow_dynamic_versions: bool | None = Field(None)
28
+ enabled_package_managers: list[OrtPackageManagers] | None = Field(None)
29
+ disabled_package_managers: list[OrtPackageManagers] | None = Field(None)
30
+ package_managers: OrtPackageManagerConfigurations | None = Field(None)
31
+ sw360_configuration: Sw360Configuration | None = Field(None)
32
+ skip_excluded: bool | None = Field(None)
@@ -372,23 +372,32 @@ class OrtRepositoryConfiguration(BaseModel):
372
372
  Each field corresponds to a specific aspect of the repository's configuration.
373
373
  """
374
374
 
375
- analyzer: OrtAnalyzerConfigurations | None = None
375
+ analyzer: OrtAnalyzerConfigurations | None = Field(
376
+ None,
377
+ description="Define Analyzer specific options",
378
+ )
376
379
  includes: OrtRepositoryConfigurationIncludes | None = Field(
377
- None, description="Defines which parts of a repository should be included."
380
+ None,
381
+ description="Defines which parts of a repository should be included.",
378
382
  )
379
383
  excludes: OrtRepositoryConfigurationExcludes | None = Field(
380
- None, description="Defines which parts of a repository should be excluded."
384
+ None,
385
+ description="Defines which parts of a repository should be excluded.",
381
386
  )
382
387
  resolutions: ResolutionsSchema | None = None
383
388
  curations: OrtRepositoryConfigurationCurations | OrtRepositoryConfigurationCurations1 | None = Field(
384
- None, description="Curations for artifacts in a repository."
389
+ None,
390
+ description="Curations for artifacts in a repository.",
385
391
  )
386
392
  package_configurations: list[OrtPackageManagerConfigurations] | None = Field(
387
- None, description="A configuration for a specific package and provenance."
393
+ None,
394
+ description="A configuration for a specific package and provenance.",
388
395
  )
389
396
  license_choices: OrtRepositoryConfigurationLicenseChoices | None = Field(
390
- None, description="A configuration to select a license from a multi-licensed package."
397
+ None,
398
+ description="A configuration to select a license from a multi-licensed package.",
391
399
  )
392
400
  snippet_choices: list[OrtRepositoryConfigurationSnippetChoice] | None = Field(
393
- None, description="A configuration to select a snippet from a package with multiple snippet findings."
401
+ None,
402
+ description="A configuration to select a snippet from a package with multiple snippet findings.",
394
403
  )
File without changes
File without changes