File tree Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
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"
9
9
}
10
-
Original file line number Diff line number Diff line change 1
1
__title__ = "eeclient"
2
2
__summary__ = "A client for Google Earth Engine"
3
- __version__ = "1.5 .0"
3
+ __version__ = "1.6 .0"
4
4
5
5
__author__ = "Daniel Guerrero"
6
6
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " ee-client"
7
- version = " 1.5 .0"
7
+ version = " 1.6 .0"
8
8
description = " extends the capabilities of the earthengine-api by providing custom session management and client interactions"
9
9
readme = { file = " README.rst" , content-type = " text/x-rst" }
10
10
authors = [
@@ -66,7 +66,7 @@ branch = true
66
66
[tool .commitizen ]
67
67
tag_format = " v$major.$minor.$patch$prerelease"
68
68
update_changelog_on_bump = false
69
- version = " 1.5 .0"
69
+ version = " 1.6 .0"
70
70
version_files = [
71
71
" pyproject.toml:version" ,
72
72
" eeclient/__init__.py:__version__" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def test_init_client(sepal_headers):
16
16
def test_is_expired (sepal_headers , dummy_headers ):
17
17
18
18
sepal_session = EESession (sepal_headers = sepal_headers )
19
- assert sepal_session .is_expired () == False
19
+ assert sepal_session .is_expired () is False
20
20
21
21
sepal_session = EESession (sepal_headers = dummy_headers )
22
- assert sepal_session .is_expired () == True
22
+ assert sepal_session .is_expired () is True
You can’t perform that action at this time.
0 commit comments