Skip to content

Commit 90f094e

Browse files
committed
Update version to v1.1.0
1 parent 1f432ee commit 90f094e

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

PKG-INFO

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
Metadata-Version: 2.1
22
Name: tuneinsight
3-
Version: 1.0.1
3+
Version: 1.1.0
44
Summary: Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API.
55
License: Apache-2.0
66
Author: Tune Insight SA
7-
Requires-Python: >=3.9,<4.0
7+
Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
88
Classifier: License :: OSI Approved :: Apache Software License
99
Classifier: Programming Language :: Python :: 3
10-
Classifier: Programming Language :: Python :: 3.9
1110
Classifier: Programming Language :: Python :: 3.10
1211
Classifier: Programming Language :: Python :: 3.11
1312
Classifier: Programming Language :: Python :: 3.12
1413
Requires-Dist: PyYAML (>=6.0,<7.0)
1514
Requires-Dist: attrs (>=21.3.0)
1615
Requires-Dist: black (==24.2.0)
1716
Requires-Dist: certifi (>=2024.07.04,<2025.0.0)
17+
Requires-Dist: cryptography (>=44.0.1,<45.0.0)
18+
Requires-Dist: h11 (>=0.16.0,<0.17.0)
1819
Requires-Dist: httpx (>=0.15.4,<0.28.0)
20+
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
1921
Requires-Dist: jupyter (>=1.1.1,<2.0.0)
2022
Requires-Dist: jupyterlab (==4.2.5)
2123
Requires-Dist: matplotlib (>=3.5.0,<4.0.0)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pip freeze | grep tuneinsight
7474
The result should look like this:
7575

7676
```
77-
tuneinsight==1.0.1
77+
tuneinsight==1.1.0
7878
```
7979

8080
If you see a line that looks like this,
@@ -85,7 +85,7 @@ tuneinsight @ file:///path/to/file/tuneinsight-0.13.1-py3-none-any.whl#sha256=..
8585

8686
the SDK was installed directly from a `.whl` file, suggesting you are using an older version. You might need to install a more recent version, using `pip`:
8787

88-
`pip install tuneinsight==1.0.1`
88+
`pip install tuneinsight==1.1.0`
8989

9090
#### Error: Could not load the cryptolib: contact your administrator.
9191

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tuneinsight"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API."
55
authors = ["Tune Insight SA"]
66
license = "Apache-2.0"
@@ -20,14 +20,17 @@ pattern = "^v(?P<base>\\d+\\.\\d+\\.\\d+)"
2020
format = "{base}"
2121

2222
[tool.poetry.dependencies]
23-
python = ">= 3.9,<4.0"
23+
python = ">3.9.0,<3.9.1 || >3.9.1,<4.0"
2424
python-keycloak = "^3.9.0"
2525
PyYAML = "^6.0"
2626
notebook = "^6.4.11"
2727
python-dotenv = "^0.21.0"
2828
python-dateutil = "^2.8.0"
2929
matplotlib = "^3.5.0"
3030
typing-extensions = "^4.6.3"
31+
h11 = "^0.16.0"
32+
jinja2 = "^3.1.6"
33+
cryptography = "^44.0.1"
3134

3235
# Required by ge_co_rest_api
3336
httpx = ">=0.15.4,<0.28.0"

0 commit comments

Comments
 (0)