atbash-hermes-plugin 0.1.5.dev0__tar.gz → 0.1.5.dev1__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: atbash-hermes-plugin
3
- Version: 0.1.5.dev0
3
+ Version: 0.1.5.dev1
4
4
  Summary: Atbash safety plugin for Hermes Agent
5
5
  Author: atbash
6
6
  License-Expression: LicenseRef-Atbash-Proprietary
@@ -11,6 +11,7 @@ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Requires-Dist: atbash-sdk==0.1.5.dev0
14
+ Requires-Dist: httpx<1,>=0.27
14
15
  Dynamic: license-file
15
16
 
16
17
  # Atbash Hermes Plugin
@@ -35,13 +36,13 @@ stopped before execution.
35
36
  Install the plugin into the same Python environment that runs Hermes:
36
37
 
37
38
  ```bash
38
- pip install --pre atbash-hermes-plugin==0.1.5.dev0
39
+ pip install --pre atbash-hermes-plugin==0.1.5.dev1
39
40
  ```
40
41
 
41
42
  If Hermes is installed in a virtual environment, use that environment's Python:
42
43
 
43
44
  ```bash
44
- /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev0
45
+ /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev1
45
46
  ```
46
47
 
47
48
  ## Configure Atbash
@@ -20,13 +20,13 @@ stopped before execution.
20
20
  Install the plugin into the same Python environment that runs Hermes:
21
21
 
22
22
  ```bash
23
- pip install --pre atbash-hermes-plugin==0.1.5.dev0
23
+ pip install --pre atbash-hermes-plugin==0.1.5.dev1
24
24
  ```
25
25
 
26
26
  If Hermes is installed in a virtual environment, use that environment's Python:
27
27
 
28
28
  ```bash
29
- /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev0
29
+ /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev1
30
30
  ```
31
31
 
32
32
  ## Configure Atbash
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: atbash-hermes-plugin
3
- Version: 0.1.5.dev0
3
+ Version: 0.1.5.dev1
4
4
  Summary: Atbash safety plugin for Hermes Agent
5
5
  Author: atbash
6
6
  License-Expression: LicenseRef-Atbash-Proprietary
@@ -11,6 +11,7 @@ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Requires-Dist: atbash-sdk==0.1.5.dev0
14
+ Requires-Dist: httpx<1,>=0.27
14
15
  Dynamic: license-file
15
16
 
16
17
  # Atbash Hermes Plugin
@@ -35,13 +36,13 @@ stopped before execution.
35
36
  Install the plugin into the same Python environment that runs Hermes:
36
37
 
37
38
  ```bash
38
- pip install --pre atbash-hermes-plugin==0.1.5.dev0
39
+ pip install --pre atbash-hermes-plugin==0.1.5.dev1
39
40
  ```
40
41
 
41
42
  If Hermes is installed in a virtual environment, use that environment's Python:
42
43
 
43
44
  ```bash
44
- /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev0
45
+ /path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.5.dev1
45
46
  ```
46
47
 
47
48
  ## Configure Atbash
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "atbash-hermes-plugin"
7
- version = "0.1.5.dev0"
7
+ version = "0.1.5.dev1"
8
8
  description = "Atbash safety plugin for Hermes Agent"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -24,7 +24,8 @@ keywords = [
24
24
  "policy"
25
25
  ]
26
26
  dependencies = [
27
- "atbash-sdk==0.1.5.dev0"
27
+ "atbash-sdk==0.1.5.dev0",
28
+ "httpx>=0.27,<1",
28
29
  ]
29
30
 
30
31
  [project.urls]