beam-client 0.2.2__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: beam-client
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary:
5
5
  Author: beam.cloud
6
6
  Author-email: support@beam.cloud
@@ -11,4 +11,4 @@ Classifier: Programming Language :: Python :: 3.9
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
- Requires-Dist: beta9 (>=0.1.12,<0.2.0)
14
+ Requires-Dist: beta9 (==0.1.13)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "beam-client"
3
- version = "0.2.2"
3
+ version = "0.2.4"
4
4
  description = ""
5
5
  authors = ["beam.cloud <support@beam.cloud>"]
6
6
  packages = [
@@ -10,7 +10,7 @@ packages = [
10
10
 
11
11
  [tool.poetry.dependencies]
12
12
  python = "^3.8"
13
- beta9 = "^0.1.12"
13
+ beta9 = "0.1.13"
14
14
 
15
15
  [tool.poetry.group.dev.dependencies]
16
16
  pytest = "^8.1.1"
@@ -2,13 +2,13 @@ import os
2
2
  from pathlib import Path
3
3
 
4
4
  from beta9.cli.main import load_cli
5
- from beta9.config import CLISettings
5
+ from beta9.config import SDKSettings
6
6
 
7
7
  from . import logs
8
8
 
9
- settings = CLISettings(
9
+ settings = SDKSettings(
10
10
  name="Beam",
11
- gateway_host=os.getenv("GATEWAY_HOST", "gateway.stage.beam.cloud"),
11
+ gateway_host=os.getenv("GATEWAY_HOST", "gateway.beam.cloud"),
12
12
  gateway_port=int(os.getenv("GATEWAY_PORT", 443)),
13
13
  config_path=Path("~/.beam/config.ini").expanduser(),
14
14
  )