Skip to content

Commit

Permalink
remove py 3.10 test and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dugalh committed Jul 21, 2022
1 parent f77e5f2 commit 4f1af3d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/run-py3-10-tests.yml

This file was deleted.

5 changes: 1 addition & 4 deletions geedim/tile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
import zipfile
from io import BytesIO
import threading
from contextlib import contextmanager
import sys

import numpy as np
import requests
Expand All @@ -28,10 +26,9 @@
from tqdm.auto import tqdm



class Tile:
# lock to prevent concurrent calls to ee.Image.getDownloadURL(), which can cause a seg fault in the standard
# python networking libraries
# python networking libraries.
_ee_lock = threading.Lock()

def __init__(self, exp_image, window: Window):
Expand Down
2 changes: 1 addition & 1 deletion geedim/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.0'
__version__ = '1.3.1'

0 comments on commit 4f1af3d

Please sign in to comment.