purem 2.1.2__tar.gz → 2.1.3__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.4
2
2
  Name: purem
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: High-performance mapping function for mixed-type arrays
5
5
  Author-email: Raman Marozau <raman@worktif.com>
6
6
  License-Expression: BUSL-1.1
purem-2.1.3/VERSION ADDED
@@ -0,0 +1 @@
1
+ 2.1.3
@@ -3,4 +3,4 @@ from purem.env_config import load_env_config
3
3
  from purem.core import Purem
4
4
 
5
5
 
6
- purem = Purem(licenced_key=load_env_config().PUREM_LICENSED_KEY)
6
+ purem = Purem(licenced_key=load_env_config().PUREM_LICENSE_KEY)
@@ -28,8 +28,8 @@ class EnvConfig(BaseModel):
28
28
  Each field represents a required environment variable with validation.
29
29
  """
30
30
 
31
- PUREM_LICENSED_KEY: Optional[str] = Field(
32
- ..., description="Purem Instance Licensed Key."
31
+ PUREM_LICENSE_KEY: Optional[str] = Field(
32
+ ..., description="Purem Instance License Key."
33
33
  )
34
34
  PUREM_DOWNLOAD_BINARY_URL: Optional[str] = Field(
35
35
  default="https://api.worktif.com/binary/v2/products/purem?token=",
@@ -54,7 +54,7 @@ def load_env_config() -> EnvConfig:
54
54
  try:
55
55
  # Retrieve and validate environment variables
56
56
  return EnvConfig(
57
- PUREM_LICENSED_KEY=os.getenv("PUREM_LICENSED_KEY", licenced_key_default),
57
+ PUREM_LICENSE_KEY=os.getenv("PUREM_LICENSE_KEY", licenced_key_default),
58
58
  PUREM_DOWNLOAD_BINARY_URL=os.getenv(
59
59
  "PUREM_DOWNLOAD_BINARY_URL",
60
60
  "https://api.worktif.com/binary/v2/products/purem?token=",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: purem
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: High-performance mapping function for mixed-type arrays
5
5
  Author-email: Raman Marozau <raman@worktif.com>
6
6
  License-Expression: BUSL-1.1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "purem"
7
- version = "2.1.2"
7
+ version = "2.1.3"
8
8
  description = "High-performance mapping function for mixed-type arrays"
9
9
  readme = { file = "README.rst", content-type = "text/x-rst" }
10
10
  requires-python = ">=3.11"
purem-2.1.2/VERSION DELETED
@@ -1 +0,0 @@
1
- 2.1.2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes