Skip to content

Commit ef030b9

Browse files
authored
Make scale-launch optional dependency (#313)
1 parent 3c245ab commit ef030b9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.3](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.13.3) - 2022-06-08
9+
10+
### Fixed
11+
- Make installation of scale-launch optional (again!).
12+
813
## [0.13.2](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.13.2) - 2022-06-08
914

1015
### Fixed

pyproject.toml

Lines changed: 3 additions & 2 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.2"
24+
version = "0.13.3"
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>"]
@@ -49,7 +49,7 @@ Shapely = { version = ">=1.8.0", optional = true }
4949
rasterio = { version = "^1.2.10", optional = true }
5050
Pillow = ">=7.1.2"
5151
s3fs = {version = ">=2021.9.0", optional = true }
52-
scale-launch = { version = ">=0.1.0", python = ">=3.7,<4.0" }
52+
scale-launch = { version = ">=0.1.0", python = ">=3.7,<4.0" , optional = true}
5353

5454
[tool.poetry.dev-dependencies]
5555
pytest = [
@@ -76,6 +76,7 @@ nu = "cli.nu:nu"
7676

7777
[tool.poetry.extras]
7878
metrics = ["Shapely", "rasterio", "s3fs"]
79+
launch = ["scale-launch"]
7980

8081

8182
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)