Skip to content

Commit d95a768

Browse files
committed
bump: version 1.5.0 → 1.6.0
1 parent bc5ac35 commit d95a768

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.vscode/settings.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2-
"python.linting.mypyEnabled": true,
3-
"python.linting.enabled": true,
4-
"typeCheckingMode": "strict",
5-
"reportMissingTypeStubs": true,
6-
"reportOptionalSubscript": true,
7-
"git.ignoreLimitWarning": true,
8-
"python.analysis.typeCheckingMode": "standard"
2+
"python.linting.mypyEnabled": true,
3+
"python.linting.enabled": true,
4+
"typeCheckingMode": "strict",
5+
"reportMissingTypeStubs": true,
6+
"reportOptionalSubscript": true,
7+
"git.ignoreLimitWarning": true,
8+
"python.analysis.typeCheckingMode": "standard"
99
}
10-

eeclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "eeclient"
22
__summary__ = "A client for Google Earth Engine"
3-
__version__ = "1.5.0"
3+
__version__ = "1.6.0"
44

55
__author__ = "Daniel Guerrero"
66
__email__ = "[email protected]"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ee-client"
7-
version = "1.5.0"
7+
version = "1.6.0"
88
description = "extends the capabilities of the earthengine-api by providing custom session management and client interactions"
99
readme = { file = "README.rst", content-type = "text/x-rst" }
1010
authors = [
@@ -66,7 +66,7 @@ branch = true
6666
[tool.commitizen]
6767
tag_format = "v$major.$minor.$patch$prerelease"
6868
update_changelog_on_bump = false
69-
version = "1.5.0"
69+
version = "1.6.0"
7070
version_files = [
7171
"pyproject.toml:version",
7272
"eeclient/__init__.py:__version__",

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_init_client(sepal_headers):
1616
def test_is_expired(sepal_headers, dummy_headers):
1717

1818
sepal_session = EESession(sepal_headers=sepal_headers)
19-
assert sepal_session.is_expired() == False
19+
assert sepal_session.is_expired() is False
2020

2121
sepal_session = EESession(sepal_headers=dummy_headers)
22-
assert sepal_session.is_expired() == True
22+
assert sepal_session.is_expired() is True

0 commit comments

Comments
 (0)