hyperforge-static-string 1.0.0.post28__tar.gz → 1.0.0.post47__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.
Files changed (12) hide show
  1. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/PKG-INFO +2 -2
  2. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/pyproject.toml +5 -2
  3. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string.egg-info/PKG-INFO +2 -2
  4. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/tests/test_static_string.py +1 -0
  5. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/setup.cfg +0 -0
  6. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string/__init__.py +0 -0
  7. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string/agent.py +0 -0
  8. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string/py.typed +0 -0
  9. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string.egg-info/SOURCES.txt +0 -0
  10. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string.egg-info/dependency_links.txt +0 -0
  11. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string.egg-info/requires.txt +0 -0
  12. {hyperforge_static_string-1.0.0.post28 → hyperforge_static_string-1.0.0.post47}/src/hyperforge_static_string.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperforge_static_string
3
- Version: 1.0.0.post28
3
+ Version: 1.0.0.post47
4
4
  Summary: A Hyperforge agent that always returns a fixed string
5
5
  License: MIT License
6
6
  Project-URL: Homepage, https://progress.com
@@ -8,5 +8,5 @@ Project-URL: Changelog, https://github.com/nuclia/hyperforge/blob/main/agents/st
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.10
11
+ Requires-Python: >=3.12
12
12
  Requires-Dist: hyperforge
@@ -2,10 +2,10 @@
2
2
  dependencies = ["hyperforge"]
3
3
 
4
4
  name = "hyperforge_static_string"
5
- version = "1.0.0.post28"
5
+ version = "1.0.0.post47"
6
6
  authors = []
7
7
  description = "A Hyperforge agent that always returns a fixed string"
8
- requires-python = ">=3.10"
8
+ requires-python = ">=3.12"
9
9
  classifiers = [
10
10
  "Programming Language :: Python :: 3",
11
11
  "License :: OSI Approved :: MIT License",
@@ -37,3 +37,6 @@ dev = [
37
37
  "pytest",
38
38
  "pytest-asyncio",
39
39
  ]
40
+
41
+ [tool.ruff]
42
+ extend = "../../ruff.toml"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperforge_static_string
3
- Version: 1.0.0.post28
3
+ Version: 1.0.0.post47
4
4
  Summary: A Hyperforge agent that always returns a fixed string
5
5
  License: MIT License
6
6
  Project-URL: Homepage, https://progress.com
@@ -8,5 +8,5 @@ Project-URL: Changelog, https://github.com/nuclia/hyperforge/blob/main/agents/st
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.10
11
+ Requires-Python: >=3.12
12
12
  Requires-Dist: hyperforge
@@ -5,6 +5,7 @@ import pytest
5
5
  from hyperforge.manager import Manager
6
6
  from hyperforge.memory.memory import EphemeralSessionMemory
7
7
  from hyperforge.models import MemoryConfig, Rules
8
+
8
9
  from hyperforge_static_string.agent import StaticStringAgent, StaticStringAgentConfig
9
10
 
10
11
  pytestmark = pytest.mark.asyncio