codeocean 0.1.4__tar.gz → 0.1.5__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,9 +1,13 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ ## 0.1.5 (2024-08-08)
5
+
6
+ - [#10](https://github.com/codeocean/codeocean-sdk-python/pull/10) fix: Provenance optional fields
7
+
4
8
  ## 0.1.4 (2024-08-02)
5
9
 
6
- - Add support for Python >= 3.9
10
+ - Add support for Python >= 3.9
7
11
 
8
12
  ## 0.1.3 (2024-07-09)
9
13
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: codeocean
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Code Ocean Python SDK
5
5
  Project-URL: Homepage, https://github.com/codeocean/codeocean-sdk-python
6
6
  Project-URL: Issues, https://github.com/codeocean/codeocean-sdk-python/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "codeocean"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  authors = [
9
9
  { name="Code Ocean", email="dev@codeocean.com" },
10
10
  ]
@@ -27,9 +27,9 @@ class DataAssetState(StrEnum):
27
27
  class Provenance:
28
28
  commit: str
29
29
  run_script: str
30
- data_assets: str
31
30
  docker_image: str
32
31
  capsule: str
32
+ data_assets: Optional[list[str]] = None
33
33
 
34
34
 
35
35
  class DataAssetOrigin(StrEnum):
File without changes
File without changes
File without changes
File without changes
File without changes