glam-processing 0.3.2__tar.gz → 0.3.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: glam-processing
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary:
5
5
  Author: John Keniston
6
6
  Author-email: jfkeniston@gmail.com
@@ -314,7 +314,7 @@ class CLMSDownloader(GlamDownloader):
314
314
 
315
315
  def query_composites(self, start_date, end_date):
316
316
 
317
- r = requests.get(self.manifest)
317
+ r = requests.get(self.manifest, verify=False)
318
318
  download_list = r.text.split("\n")
319
319
 
320
320
  composites = []
@@ -346,7 +346,7 @@ class CLMSDownloader(GlamDownloader):
346
346
  date = composite.get("date")
347
347
  url = composite.get("url")
348
348
 
349
- r = requests.get(url)
349
+ r = requests.get(url, verify=False)
350
350
 
351
351
  out = os.path.join(out_dir, f"{self.dataset}.{date}.tif")
352
352
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "glam-processing"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  description = ""
5
5
  authors = ["John Keniston <jfkeniston@gmail.com>"]
6
6
  readme = "README.md"