ecoscape-utilities 0.0.39__tar.gz → 0.0.40__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ecoscape-utilities might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ecoscape-utilities
3
- Version: 0.0.39
3
+ Version: 0.0.40
4
4
  Summary: A collection of EcoScape utilities.
5
5
  Author-email: Luca de Alfaro <luca@ucsc.edu>, Coen Adler <ctadler@ucsc.edu>, Artie Nazarov <anazarov@ucsc.edu>, Natalia Ocampo-Peñuela <nocampop@ucsc.edu>, Jasmine Tai <cjtai@ucsc.edu>, Natalie Valett <nvalett@ucsc.edu>
6
6
  Project-URL: Homepage, https://github.com/ecoscape-earth/ecoscape-utilities
@@ -129,8 +129,8 @@ class EbirdObservations(Connection):
129
129
  # Adds breeding portion
130
130
  if breeding is not None:
131
131
  query_string.extend([
132
- 'and substr("OBSERVATION DATE", 6, 2) >= ":br1"',
133
- 'and substr("OBSERVATION DATE", 6, 2) <= ":br2"',
132
+ 'and substr("OBSERVATION DATE", 6, 2) >= :br1',
133
+ 'and substr("OBSERVATION DATE", 6, 2) <= :br2',
134
134
  ])
135
135
  d['br1'], d['br2'] = breeding
136
136
  if date_range is not None:
@@ -184,8 +184,8 @@ class EbirdObservations(Connection):
184
184
  # Adds breeding portion
185
185
  if breeding is not None:
186
186
  query_string.extend([
187
- 'and substr("OBSERVATION DATE", 6, 2) >= ":br1"',
188
- 'and substr("OBSERVATION DATE", 6, 2) <= ":br2"',
187
+ 'and substr("OBSERVATION DATE", 6, 2) >= :br1',
188
+ 'and substr("OBSERVATION DATE", 6, 2) <= :br2',
189
189
  ])
190
190
  d['br1'], d['br2'] = breeding
191
191
  if date_range is not None:
@@ -226,8 +226,8 @@ class EbirdObservations(Connection):
226
226
  # Adds breeding portion
227
227
  if breeding is not None:
228
228
  query_string.extend([
229
- 'and substr(checklist."OBSERVATION DATE", 6, 2) >= ":br1"',
230
- 'and substr(checklist."OBSERVATION DATE", 6, 2) <= ":br2"',
229
+ 'and substr(checklist."OBSERVATION DATE", 6, 2) >= :br1',
230
+ 'and substr(checklist."OBSERVATION DATE", 6, 2) <= :br2',
231
231
  ])
232
232
  d['br1'], d['br2'] = breeding
233
233
  if min_time is not None:
@@ -299,8 +299,8 @@ class EbirdObservations(Connection):
299
299
  # Adds breeding portion
300
300
  if breeding is not None:
301
301
  query_string.extend([
302
- 'and substr("OBSERVATION DATE", 6, 2) >= ":br1"',
303
- 'and substr("OBSERVATION DATE", 6, 2) <= ":br2"',
302
+ 'and substr("OBSERVATION DATE", 6, 2) >= :br1',
303
+ 'and substr("OBSERVATION DATE", 6, 2) <= :br2',
304
304
  ])
305
305
  d['br1'], d['br2'] = breeding
306
306
  if min_time is not None:
@@ -337,8 +337,8 @@ class EbirdObservations(Connection):
337
337
  # Adds breeding portion
338
338
  if breeding is not None:
339
339
  query_string.extend([
340
- 'and substr(checklist."OBSERVATION DATE", 6, 2) >= ":br1"',
341
- 'and substr(checklist."OBSERVATION DATE", 6, 2) <= ":br2"',
340
+ 'and substr(checklist."OBSERVATION DATE", 6, 2) >= :br1',
341
+ 'and substr(checklist."OBSERVATION DATE", 6, 2) <= :br2',
342
342
  ])
343
343
  d['br1'], d['br2'] = breeding
344
344
  if date_range is not None:
@@ -400,8 +400,8 @@ class EbirdObservations(Connection):
400
400
  # Adds breeding portion
401
401
  if breeding is not None:
402
402
  query_string.extend([
403
- 'and substr("OBSERVATION DATE", 6, 2) >= ":br1"',
404
- 'and substr("OBSERVATION DATE", 6, 2) <= ":br2"',
403
+ 'and substr("OBSERVATION DATE", 6, 2) >= :br1',
404
+ 'and substr("OBSERVATION DATE", 6, 2) <= :br2',
405
405
  ])
406
406
  d['br1'], d['br2'] = breeding
407
407
  if min_time is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ecoscape-utilities
3
- Version: 0.0.39
3
+ Version: 0.0.40
4
4
  Summary: A collection of EcoScape utilities.
5
5
  Author-email: Luca de Alfaro <luca@ucsc.edu>, Coen Adler <ctadler@ucsc.edu>, Artie Nazarov <anazarov@ucsc.edu>, Natalia Ocampo-Peñuela <nocampop@ucsc.edu>, Jasmine Tai <cjtai@ucsc.edu>, Natalie Valett <nvalett@ucsc.edu>
6
6
  Project-URL: Homepage, https://github.com/ecoscape-earth/ecoscape-utilities
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ecoscape-utilities"
7
- version = "0.0.39"
7
+ version = "0.0.40"
8
8
  authors = [
9
9
  {name="Luca de Alfaro", email="luca@ucsc.edu"},
10
10
  {name="Coen Adler", email="ctadler@ucsc.edu"},