Skip to content

Commit 5799508

Browse files
authored
v0.1.2
v0.1.2
2 parents 83deeb6 + 56eeede commit 5799508

File tree

7 files changed

+151
-5
lines changed

7 files changed

+151
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ poetry.lock
77
pygeodes/data/profile.json
88
dist/*
99
tests/test_env/download_dir/
10+
*.pyc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To see the docs, please go to [https://CNES.github.io/pyGeodes/](https://cnes.gi
2828

2929
### From PyPi
3030

31-
You can install from PyPi by following those steps :
31+
You can install from PyPi by following those steps:
3232

3333
1. Install pygeodes
3434

pygeodes/_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.1.1"
1+
version = "0.1.2"
22
name = "pygeodes"
33
description = "A Python client for Geodes APIs"
44
author = "CNES 2024"

pygeodes/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def search(args):
120120
query=query_dict,
121121
bbox=args.bbox,
122122
get_all=get_all,
123-
collections=args.collections.strip().split(","),
123+
collections=args.collections.strip().split(",") if args.collections is not None else None,
124124
)
125125

126126
dataframe = format_items(dataframe, {"identifier"})

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pygeodes"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A Python client for Geodes APIs"
55
authors = ["CNES"]
66
readme = "README.md"

0 commit comments

Comments
 (0)