Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit a0bd1f4

Browse files
committed
feat: update sse-cloent to handle newline character
1 parent de3d1d2 commit a0bd1f4

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ opentelemetry-api~=1.22.0
1414
opentelemetry-sdk~=1.22.0
1515
deprecation~=2.1.0
1616
# OpenCTI
17-
filigran-sseclient~=1.0.0
17+
filigran-sseclient>=1.0.2
1818
stix2~=3.0.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ install_requires =
5050
opentelemetry-sdk~=1.22.0
5151
deprecation~=2.1.0
5252
# OpenCTI
53-
filigran-sseclient~=1.0.0
53+
filigran-sseclient>=1.0.2
5454
stix2~=3.0.1
5555

5656
[options.extras_require]

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import sys
2+
from setuptools import setup
3+
4+
# Check Python version
5+
if sys.version_info < (3, 11):
6+
print(
7+
"Warning: Your Python version is {}. This package is compatible "
8+
"with Python 3.7 but is recommended to be used with Python 3.11 or higher.".format(
9+
sys.version
10+
)
11+
)
12+
13+
setup()

0 commit comments

Comments
 (0)