Skip to content

Commit

Permalink
fix py version 3.10 -> '3.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
dugalh committed Dec 11, 2022
1 parent d312e0b commit a5277f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest ]
python-version: [ 3.7, 3.8, 3.9, 3.10 ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Set up Python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-test-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest ]
python-version: [ 3.7, 3.8, 3.9, 3.10 ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Set up Python
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ Example
"coordinates": [[[24, -33.6], [24, -33.53], [23.93, -33.53], [23.93, -33.6], [24, -33.6]]]
}
# make collection and search, reporting fill and cloudless portions
# make collection and search, reporting cloudless portions
coll = gd.MaskedCollection.from_name('COPERNICUS/S2_SR')
coll = coll.search('2019-01-10', '2019-01-21', region, fill_portion=0)
coll = coll.search('2019-01-10', '2019-01-21', region, cloudless_portion=0)
print(coll.schema_table)
print(coll.properties_table)
Expand Down

0 comments on commit a5277f0

Please sign in to comment.