mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
protobuf: Fix v4.21.0 (python) compatibility issue
- Added auto-generated protobuf files (proto-c and python to pre-commit hook ignore lists
This commit is contained in:
parent
b09b716f1d
commit
1ee3ee6854
1
.flake8
1
.flake8
@ -160,7 +160,6 @@ exclude =
|
||||
components/wifi_provisioning/python/wifi_config_pb2.py,
|
||||
components/wifi_provisioning/python/wifi_constants_pb2.py,
|
||||
components/esp_local_ctrl/python/esp_local_ctrl_pb2.py,
|
||||
examples/provisioning/legacy/custom_config/components/custom_provisioning/python/custom_config_pb2.py,
|
||||
|
||||
per-file-ignores =
|
||||
# Sphinx conf.py files use star imports to setup config variables
|
||||
|
@ -12,12 +12,16 @@ repos:
|
||||
# 2 - any file matching *test*/*expected* (for host tests, if possible use this naming pattern always)
|
||||
# 3 - any directory named 'testdata'
|
||||
# 4 - IDF monitor test data
|
||||
# 5 - protobuf auto-generated files
|
||||
exclude: &whitespace_excludes |
|
||||
(?x)^(
|
||||
.+\.(md|rst|map|bin)|
|
||||
.+test.*\/.*expected.*|
|
||||
.+\/testdata\/.+|
|
||||
.+test_idf_monitor\/tests\/.+
|
||||
.+test_idf_monitor\/tests\/.+|
|
||||
.*_pb2.py|
|
||||
.*.pb-c.h|
|
||||
.*.pb-c.c
|
||||
)$
|
||||
- id: end-of-file-fixer
|
||||
exclude: *whitespace_excludes
|
||||
@ -35,6 +39,10 @@ repos:
|
||||
hooks:
|
||||
- id: isort
|
||||
name: isort (python)
|
||||
exclude: >
|
||||
(?x)^(
|
||||
.*_pb2.py
|
||||
)$
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: check-executables
|
||||
@ -98,6 +106,10 @@ repos:
|
||||
- 'mypy-extensions==0.4.3'
|
||||
- 'types-setuptools==57.4.14'
|
||||
- 'types-PyYAML==0.1.9'
|
||||
exclude: >
|
||||
(?x)^(
|
||||
.*_pb2.py
|
||||
)$
|
||||
language: python
|
||||
types: [python]
|
||||
- id: check-copyright
|
||||
|
@ -20,3 +20,11 @@ components/http_parser/*.h
|
||||
|
||||
# FATFS upstream code
|
||||
components/fatfs/src/**
|
||||
|
||||
# Protobuf auto-generated files
|
||||
components/esp_local_ctrl/proto-c/**
|
||||
components/esp_local_ctrl/python/**
|
||||
components/protocomm/proto-c/**
|
||||
components/protocomm/python/**
|
||||
components/wifi_provisioning/proto-c/**
|
||||
components/wifi_provisioning/python/**
|
||||
|
@ -1,3 +1,3 @@
|
||||
future
|
||||
protobuf<4.0.0 # IDFCI-1278
|
||||
cryptography
|
||||
protobuf
|
||||
|
Loading…
Reference in New Issue
Block a user