Skip to content

Commit

Permalink
pin typing-extensions to <4.6 for compatibility with multiformats
Browse files Browse the repository at this point in the history
  • Loading branch information
snarfed committed Jul 25, 2023
1 parent 1af1dc7 commit cc186f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
command: |
pip install -U pip
pip -V
pip install -U .[datastore,tests]
pip install -U .[datastore,tests] 'typing-extensions<4.6.0'
pip install coverage coveralls
- run:
Expand Down
2 changes: 2 additions & 0 deletions arroba/tests/test_datastore_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
from .testutil import TestCase

os.environ.setdefault('DATASTORE_EMULATOR_HOST', 'localhost:8089')
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = os.path.join(
os.path.dirname(__file__), 'fake_user_account.json')


class DatastoreStorageTest(TestCase):
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,3 @@ datastore = [
[project.urls]
'Homepage' = 'https://github.com/snarfed/arroba'
'Documentation' = 'https://arroba.readthedocs.io/'

# TODO:
# extras deps: google-cloud-ndb~=2.0

0 comments on commit cc186f7

Please sign in to comment.