Skip to content

Commit

Permalink
Fix Windows emulator support by default (#24)
Browse files Browse the repository at this point in the history
Updated version of grpcio to fix the emulator support googleapis/python-firestore#359 (comment)

With grpcio>=1.39.0 Windows can again connect to emulator easily, and both async and sync variants work.
  • Loading branch information
lietu committed Aug 20, 2021
1 parent 8dd5816 commit e64284a
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 294 deletions.
10 changes: 10 additions & 0 deletions .pre-commit-config.yaml
Expand Up @@ -8,6 +8,16 @@ repos:
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
# All non-bat files should end with LF
- id: mixed-line-ending
name: Ensure LF endings on most files
args: [ '--fix=lf' ]
exclude: \.bat$
# Bat files should end with CRLF
- id: mixed-line-ending
name: Ensure CFLF endings on Windows files
args: [ '--fix=crlf' ]
files: \.bat$
- repo: local
hooks:
- id: invoke-unasync
Expand Down

0 comments on commit e64284a

Please sign in to comment.