Skip to content

Commit 2ba82b3

Browse files
committed
Add requirement constraints for requests & urllib3
1 parent 9a83ae1 commit 2ba82b3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## [Unreleased]
99

1010
### Fixed
11+
1112
* Fix warnings related to not closing requests sessions
1213
* Loading bar no longer jumps from 0% to 100% for large uploads
1314

14-
### Added
15+
### Added
1516

1617
* Added `protobuf<3.20` to requirements to fix compatibility issue with Tensorflow.
1718
* Warnings if the dependencies from the `requirement_txt_file` and current environment are inconsistent.
1819

1920
### Changed
2021

2122
* Migrated package name from [openlayer](https://pypi.org/project/openlayer/) to [openlayer](https://pypi.org/project/openlayer/) due to a company name change.
22-
* Required Python version `>=3.7` and `<3.9`.
23+
* Required Python version `>=3.7` and `<3.9`.

openlayer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Define the SDK version here so that the interal package can have access to this value.
22
# See https://stackoverflow.com/questions/2058802
3-
__version__ = "0.0.0a5"
3+
__version__ = "0.0.0a6"

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,7 @@ python_requires = >=3.7, <=3.9
3434
include_package_data = True
3535
setup_requires =
3636
setuptools>=59.0
37+
requests>=2.28.2
38+
urllib3>=1.26.7
3739
wheel
38-
zip_safe = False
40+
zip_safe = False

0 commit comments

Comments
 (0)