Skip to content

Commit 3c245ab

Browse files
authored
Open up dependencies to facilitate installation in more environments (#312)
* Make launch optional * Fix depends * Update lock
1 parent 8646aaa commit 3c245ab

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to the [Nucleus Python Client](https://github.com/scaleapi/n
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.13.2](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.13.2) - 2022-06-08
9+
10+
### Fixed
11+
12+
- Open up requirements for easier installation in more environments. Add more optional installs under `metrics`
13+
14+
## [0.13.1](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.13.1) - 2022-06-08
15+
16+
### Fixed
17+
18+
- Make installation of scale-launch optional
19+
820
## [0.13.0](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.13.0) - 2022-06-08
921

1022
### Added

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exclude = '''
2121

2222
[tool.poetry]
2323
name = "scale-nucleus"
24-
version = "0.13.0"
24+
version = "0.13.2"
2525
description = "The official Python client library for Nucleus, the Data Platform for AI"
2626
license = "MIT"
2727
authors = ["Scale AI Nucleus Team <nucleusapi@scaleapi.com>"]
@@ -48,7 +48,7 @@ scikit-learn = ">=0.24.0"
4848
Shapely = { version = ">=1.8.0", optional = true }
4949
rasterio = { version = "^1.2.10", optional = true }
5050
Pillow = ">=7.1.2"
51-
s3fs = ">=2022.1.0"
51+
s3fs = {version = ">=2021.9.0", optional = true }
5252
scale-launch = { version = ">=0.1.0", python = ">=3.7,<4.0" }
5353

5454
[tool.poetry.dev-dependencies]
@@ -75,7 +75,7 @@ pytest-xdist = "^2.5.0"
7575
nu = "cli.nu:nu"
7676

7777
[tool.poetry.extras]
78-
metrics = ["Shapely", "rasterio"]
78+
metrics = ["Shapely", "rasterio", "s3fs"]
7979

8080

8181
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)