Skip to content

Commit 7cef0c3

Browse files
authored
Lock SDK to <8 (#508)
The Cognite SDK v8 is out, and is contains a few breaking changes (as is to be expected with a major release). We should of course migrate to the new version, but in the meantime, let's lock the version to <8 to avoid any issues for downstream users.
1 parent 7187ddd commit 7cef0c3

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Changes are grouped as follows
1212
- `Fixed` for any bug fixes.
1313
- `Security` in case of vulnerabilities.
1414

15+
## 7.11.6
16+
17+
### Fixed
18+
* Locked the SDK version to <8 since we don't (yet) support that. Moving to the new SDK as a base would require a breaking change and will be done in a major release.
19+
1520
## 7.11.5
1621

1722
### Fixed

cognite/extractorutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Cognite extractor utils is a Python package that simplifies the development of new extractors.
1717
"""
1818

19-
__version__ = "7.11.5"
19+
__version__ = "7.11.6"
2020
from .base import Extractor
2121

2222
__all__ = ["Extractor"]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cognite-extractor-utils"
3-
version = "7.11.5"
3+
version = "7.11.6"
44
description = "Utilities for easier development of extractors for CDF"
55
authors = [
66
{name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}
@@ -15,7 +15,7 @@ classifiers = [
1515
]
1616

1717
dependencies = [
18-
"cognite-sdk>=7.90.0",
18+
"cognite-sdk>=7.90.0,<8.0.0",
1919
"prometheus-client>=0.7.0,<=1.0.0",
2020
"arrow>=1.0.0",
2121
"pyyaml>=5.3.0,<7",

0 commit comments

Comments
 (0)