pd4castr-api-sdk 0.0.0__tar.gz → 1.0.0__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.
@@ -60,7 +60,6 @@ memory.md
60
60
  *.pem
61
61
 
62
62
  # development environment
63
- dev-volumes/registry-auth/*
64
63
  dev-volumes/registry-data/*
65
64
 
66
65
  # python
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pd4castr-api-sdk
3
- Version: 0.0.0
3
+ Version: 1.0.0
4
4
  Summary: Python client for the pd4castr API
5
5
  Author: pd4castr
6
6
  License: MIT License (MIT)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pd4castr-api-sdk"
7
- version = "0.0.0"
7
+ version = "1.0.0"
8
8
  description = "Python client for the pd4castr API"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE.md" }
@@ -51,10 +51,3 @@ strict = true
51
51
  warn_unreachable = true
52
52
  disallow_any_generics = true
53
53
  no_implicit_optional = true
54
-
55
- [tool.semantic_release]
56
- tag_format = "python-api-sdk-v{version}"
57
- version_toml = ["pyproject.toml:project.version"]
58
- version_variables = ["src/pd4castr_api_sdk/__init__.py:__version__"]
59
- commit_message = "chore(python-api-sdk): release {version} [skip ci]"
60
-
@@ -10,4 +10,4 @@ __all__ = [
10
10
  "User",
11
11
  ]
12
12
 
13
- __version__ = "0.0.0"
13
+ __version__ = "1.0.0"
@@ -1,6 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
- from enum import Enum
3
+ from enum import StrEnum
4
4
 
5
5
  from pydantic import BaseModel, ConfigDict
6
6
 
@@ -9,7 +9,7 @@ class Pd4castrBaseModel(BaseModel):
9
9
  model_config = ConfigDict(extra="ignore")
10
10
 
11
11
 
12
- class FileFormat(str, Enum):
12
+ class FileFormat(StrEnum):
13
13
  json = "json"
14
14
  csv = "csv"
15
15
  parquet = "parquet"