Skip to content

Commit 4a86db1

Browse files
committed
Merge branch 'develop' into 'main'
Hotfix applied to README, setup.py and __init__ See merge request integrations/sdk/reversinglabs-sdk-py3!16
2 parents 36db6e9 + c9ac6e5 commit 4a86db1

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,14 @@ v2.5.1 (2024-04-02)
374374
- **ticloud** module:
375375
- Parameters `internet_simulation` and `sample_name` from the `ticloud.DynamicAnalysis.detonate_sample` method are now used through the `**optiona_parameters` key-value parameter instead of as individual named parameters.
376376

377+
378+
2.8.1 (2025-02-17)
379+
-------------------
380+
381+
#### Improvements
382+
- Defined the latest version (2.32.3) of the requests library as a dependency. urllib3 was removed as an explicit dependency for this project.
383+
- Python 3.9 is now defined as the oldest version of Python supported by this project.
384+
377385
### Reversinglabs SDK Cookbook changes
378386
#### Improvements
379387
- **Scenarios and Workflows** notebooks:
@@ -383,4 +391,5 @@ v2.5.1 (2024-04-02)
383391
- Added the `cyber_defense_alliance.py` command line tool.
384392

385393
Starting with ReversingLabs SDK version 2.8.0, the **ReversingLabs SDK Cookbook** project's release cycle and versioning are closely tied to this project.
386-
This changelog will also be keeping track of changes made to the ReversingLabs SDK Cookbook project.
394+
This changelog will also be keeping track of changes made to the ReversingLabs SDK Cookbook project.
395+

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
![ReversingLabs](https://raw.githubusercontent.com/reversinglabs/reversinglabs-sdk-py3/master/logo.png)
1+
![ReversingLabs](./logo.png)
2+
23

34
# ReversingLabs SDK
45

@@ -1134,4 +1135,4 @@ except Exception as e:
11341135
else:
11351136
raise
11361137
```
1137-
Same approach can also be used for A1000 and TitaniumScale.
1138+
Same approach can also be used for A1000 and TitaniumScale.

ReversingLabs/SDK/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
A Python SDK for communicating with ReversingLabs services.
66
"""
77

8-
__version__ = "2.8.0"
8+
__version__ = "2.8.1"

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from ReversingLabs.SDK import __version__
33

44

5-
requires = ["requests>=2.31.0", "urllib3>=2.0.7"]
5+
requires = ["requests>=2.32.3"]
66

77
packages = ["ReversingLabs",
88
"ReversingLabs.SDK"]
@@ -20,7 +20,7 @@
2020
author_email="[email protected]",
2121
url="https://github.com/reversinglabs/reversinglabs-sdk-py3",
2222
packages=packages,
23-
python_requires=">=3.6",
23+
python_requires=">=3.9",
2424
install_requires=requires,
2525
extras_require={"test": ["pytest"]},
2626
license="MIT",

0 commit comments

Comments
 (0)