Skip to content

Commit 17a4be7

Browse files
Pin typing-extensions to ~=4.13.0 where it is still compatible (#222)
* Pin typing-extensions to ~=4.13.0 where it is still compatible * Bump version to 1.4.8
1 parent d78627e commit 17a4be7

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ All notable changes to the `python-domino` library will be documented in this fi
88

99
### Changed
1010

11+
## 1.4.8
12+
13+
### Added
14+
15+
### Changed
16+
* Pin typing-extensions to compatible version
17+
18+
### Changed
19+
1120
## 1.4.7
1221

1322
### Added

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= python-domino
22

3-
:latest-version: 1.4.7
3+
:latest-version: 1.4.8
44
:python-domino-repo: https://github.com/dominodatalab/python-domino
55

66
This library provides bindings for the Domino APIs. It ships with the Domino Standard Environment (DSE).
@@ -40,7 +40,7 @@ The `python-domino` library is compatible with different versions of Domino:
4040
| {python-domino-repo}/archive/1.4.1.zip[1.4.1] or Higher
4141

4242
| 6.0.0 or higher
43-
| {python-domino-repo}/archive/1.4.7.zip[1.4.7] or Higher
43+
| {python-domino-repo}/archive/1.4.8.zip[1.4.8] or Higher
4444
|===
4545

4646
== Development

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See this documentation for details about the APIs:
77

88
- [Legacy APIs](https://dominodatalab.github.io/api-docs/)
99

10-
The latest released version of `python-domino` is `1.4.7`.
10+
The latest released version of `python-domino` is `1.4.8`.
1111

1212
# Version compatibility matrix
1313

@@ -22,7 +22,7 @@ Domino:
2222
| 5.5.0 or higher | [1.2.2](https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.2.2.zip) or Higher |
2323
| 5.10.0 or higher | [1.3.1](https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.3.1.zip) or Higher |
2424
| 5.11.0 or higher | [1.4.1](https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.1.zip) or Higher |
25-
| 6.0.0 or higher | [1.4.7](https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.7.zip) or Higher |
25+
| 6.0.0 or higher | [1.4.8](https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.8.zip) or Higher |
2626

2727
# Development
2828

@@ -112,7 +112,7 @@ See
112112
# Budgets and Billing Tags
113113

114114
See
115-
[`example_budget_manager.py`](https://github.com/dominodatalab/python-domino/blob/release-1.4.7/examples/example_budget_manager.py)
115+
[`example_budget_manager.py`](https://github.com/dominodatalab/python-domino/blob/release-1.4.8/examples/example_budget_manager.py)
116116
for example code.
117117

118118
### budget_defaults_list()

domino/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.7"
1+
__version__ = "1.4.8"

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ python-dateutil~=2.8.2
88
beautifulsoup4~=4.12.2
99
packaging~=23.2
1010
retry~=0.9.2
11-
setuptools~=68.2.2
11+
setuptools~=68.2.2
12+
typing-extensions~=4.13.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_version():
4747
keywords=["Domino Data Lab", "API"],
4848
python_requires='>=3.9.0',
4949
install_requires=["packaging", "requests>=2.4.2", "beautifulsoup4~=4.11", "polling2~=0.5.0",
50-
"urllib3>=1.26.19,<3", "typing-extensions>=4.5.0", "frozendict~=2.3", "python-dateutil~=2.8.2",
50+
"urllib3>=1.26.19,<3", "typing-extensions~=4.13.0", "frozendict~=2.3", "python-dateutil~=2.8.2",
5151
"retry==0.9.2"],
5252
extras_require={
5353
"airflow": ["apache-airflow==2.2.4"],

0 commit comments

Comments
 (0)