protobuf-protoc-bin 32.0rc2__py2.py3-none-macosx_10_13_universal2.whl → 32.1__py2.py3-none-macosx_10_13_universal2.whl
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.
- protobuf_protoc_bin/_version.py +16 -3
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/scripts/protoc +0 -0
- {protobuf_protoc_bin-32.0rc2.dist-info → protobuf_protoc_bin-32.1.dist-info}/METADATA +1 -1
- protobuf_protoc_bin-32.1.dist-info/RECORD +22 -0
- protobuf_protoc_bin-32.0rc2.dist-info/RECORD +0 -22
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/any.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/api.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/compiler/plugin.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/cpp_features.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/descriptor.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/duration.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/empty.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/field_mask.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/go_features.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/java_features.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/source_context.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/struct.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/timestamp.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/type.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.data → protobuf_protoc_bin-32.1.data}/data/include/google/protobuf/wrappers.proto +0 -0
- {protobuf_protoc_bin-32.0rc2.dist-info → protobuf_protoc_bin-32.1.dist-info}/WHEEL +0 -0
- {protobuf_protoc_bin-32.0rc2.dist-info → protobuf_protoc_bin-32.1.dist-info}/top_level.txt +0 -0
protobuf_protoc_bin/_version.py
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# file generated by setuptools-scm
|
|
2
2
|
# don't change, don't track in version control
|
|
3
3
|
|
|
4
|
-
__all__ = [
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
5
12
|
|
|
6
13
|
TYPE_CHECKING = False
|
|
7
14
|
if TYPE_CHECKING:
|
|
@@ -9,13 +16,19 @@ if TYPE_CHECKING:
|
|
|
9
16
|
from typing import Union
|
|
10
17
|
|
|
11
18
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
12
20
|
else:
|
|
13
21
|
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
14
23
|
|
|
15
24
|
version: str
|
|
16
25
|
__version__: str
|
|
17
26
|
__version_tuple__: VERSION_TUPLE
|
|
18
27
|
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
19
30
|
|
|
20
|
-
__version__ = version = '32.
|
|
21
|
-
__version_tuple__ = version_tuple = (32,
|
|
31
|
+
__version__ = version = '32.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (32, 1)
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = 'g2db8a4fa3'
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: protobuf-protoc-bin
|
|
3
|
-
Version: 32.
|
|
3
|
+
Version: 32.1
|
|
4
4
|
Summary: Pip package to host the protobuf protoc binary
|
|
5
5
|
Author-email: Robert Roos <robert.roos@demcon.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/RobertoRoos/protobuf-protoc-bin
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
protobuf_protoc_bin/__init__.py,sha256=yGtTEM3qpREAYJ6gMxl6JyobNMjoh16KUoDxhc1we_M,212
|
|
2
|
+
protobuf_protoc_bin/_version.py,sha256=pnCFVjHlCja8lEZeaGa4B-r7Pd1DxnP_v-zYPA_zXLI,709
|
|
3
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/any.proto,sha256=vPXebORjsaOP92t3lVqn5YC07BKvNKknsdRcnvsPr2Y,6154
|
|
4
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/api.proto,sha256=bUfWJy62h8gGtv6wjvOSUkPGTqB2zZRAt4PienrsVQI,8845
|
|
5
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/cpp_features.proto,sha256=Cwsd_msm8JKllNN--EAX8RxqL4hfZMER0gmyLnLKYtU,2186
|
|
6
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/descriptor.proto,sha256=Bhuvj2mBC5gdXTMgTiZlyNPyVbkCM29_U11L2HkONa0,57659
|
|
7
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/duration.proto,sha256=o_cwH_KVbsLjDCJB7OBxl-SobHUjSNVgciSBnUkhyf4,4892
|
|
8
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/empty.proto,sha256=7O89VMyeB5ZzuYFsZ7rHcPfzv22totRZa6adcdqpceY,2363
|
|
9
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/field_mask.proto,sha256=F7DzQsw6Ji4xfVaITz9XWvv6xRKtBXk0nMdFDkHyaJE,8185
|
|
10
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/go_features.proto,sha256=xiON7PHf9sLIX47dtOQ9MPY-XmPovuQRq8HpkC7iMKQ,2536
|
|
11
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/java_features.proto,sha256=rAJT8jb5OSqcccGyEpe8fKiSSW7VULEsk9Ckro5BIN8,4899
|
|
12
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/source_context.proto,sha256=N9NAHeia8dFJb8lJkkpfIBG9L6376w2hyqJ3FZqWd20,2341
|
|
13
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/struct.proto,sha256=G_B7qLmiTjoDkN3aw60NtBxjKH0lJ4iwI5giC5q8kA8,3778
|
|
14
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/timestamp.proto,sha256=FAUsYELB3S0LUCRfKBLqq26vgtsLbozkg-rlJ_c7bug,6449
|
|
15
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/type.proto,sha256=UKO2e02JToKBczGar81qxEDBU0AEhFK9E6E-i0fMZjc,7774
|
|
16
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/wrappers.proto,sha256=aHjcdTTPmAXu5WNFzcOLXpyjneziRnEMZjxwB6Z_70k,5392
|
|
17
|
+
protobuf_protoc_bin-32.1.data/data/include/google/protobuf/compiler/plugin.proto,sha256=j172w2-tjmbjNHwPjYkQ37FCObjM_SqNFtuo53W1e38,8556
|
|
18
|
+
protobuf_protoc_bin-32.1.data/scripts/protoc,sha256=WGcUR_m4cfSDIQi61WDJ-uPjLgSEuyT-vLFeZ9oV3E0,9441504
|
|
19
|
+
protobuf_protoc_bin-32.1.dist-info/METADATA,sha256=6blE4_3aHqcg1iUBmrdC4Hq4BcSDGZEqKyIF7zglYNk,3329
|
|
20
|
+
protobuf_protoc_bin-32.1.dist-info/WHEEL,sha256=4WeZM9ZYiRuahMsnb6UGVG4lSN16GmgeLAWiMPJ2zuo,149
|
|
21
|
+
protobuf_protoc_bin-32.1.dist-info/top_level.txt,sha256=afBaZDfluZv1nGzi4GoHBIk52GjoHfFL1zEMio0q_YA,20
|
|
22
|
+
protobuf_protoc_bin-32.1.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
protobuf_protoc_bin/__init__.py,sha256=yGtTEM3qpREAYJ6gMxl6JyobNMjoh16KUoDxhc1we_M,212
|
|
2
|
-
protobuf_protoc_bin/_version.py,sha256=9rGqhhmzbAbOqfaU6YBKAM7JfehllEal5bhnfBL_VYs,518
|
|
3
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/any.proto,sha256=vPXebORjsaOP92t3lVqn5YC07BKvNKknsdRcnvsPr2Y,6154
|
|
4
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/api.proto,sha256=bUfWJy62h8gGtv6wjvOSUkPGTqB2zZRAt4PienrsVQI,8845
|
|
5
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/cpp_features.proto,sha256=Cwsd_msm8JKllNN--EAX8RxqL4hfZMER0gmyLnLKYtU,2186
|
|
6
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/descriptor.proto,sha256=Bhuvj2mBC5gdXTMgTiZlyNPyVbkCM29_U11L2HkONa0,57659
|
|
7
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/duration.proto,sha256=o_cwH_KVbsLjDCJB7OBxl-SobHUjSNVgciSBnUkhyf4,4892
|
|
8
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/empty.proto,sha256=7O89VMyeB5ZzuYFsZ7rHcPfzv22totRZa6adcdqpceY,2363
|
|
9
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/field_mask.proto,sha256=F7DzQsw6Ji4xfVaITz9XWvv6xRKtBXk0nMdFDkHyaJE,8185
|
|
10
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/go_features.proto,sha256=xiON7PHf9sLIX47dtOQ9MPY-XmPovuQRq8HpkC7iMKQ,2536
|
|
11
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/java_features.proto,sha256=rAJT8jb5OSqcccGyEpe8fKiSSW7VULEsk9Ckro5BIN8,4899
|
|
12
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/source_context.proto,sha256=N9NAHeia8dFJb8lJkkpfIBG9L6376w2hyqJ3FZqWd20,2341
|
|
13
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/struct.proto,sha256=G_B7qLmiTjoDkN3aw60NtBxjKH0lJ4iwI5giC5q8kA8,3778
|
|
14
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/timestamp.proto,sha256=FAUsYELB3S0LUCRfKBLqq26vgtsLbozkg-rlJ_c7bug,6449
|
|
15
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/type.proto,sha256=UKO2e02JToKBczGar81qxEDBU0AEhFK9E6E-i0fMZjc,7774
|
|
16
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/wrappers.proto,sha256=aHjcdTTPmAXu5WNFzcOLXpyjneziRnEMZjxwB6Z_70k,5392
|
|
17
|
-
protobuf_protoc_bin-32.0rc2.data/data/include/google/protobuf/compiler/plugin.proto,sha256=j172w2-tjmbjNHwPjYkQ37FCObjM_SqNFtuo53W1e38,8556
|
|
18
|
-
protobuf_protoc_bin-32.0rc2.data/scripts/protoc,sha256=L2WlBAOJv_hRGllJ4QRMEeTLlL_tSF8vyaKhut5qPXI,9425504
|
|
19
|
-
protobuf_protoc_bin-32.0rc2.dist-info/METADATA,sha256=xq5OwAPniQFsj_hKw_1v8_Un0JxXa-Gm3_HmNDzdN1g,3332
|
|
20
|
-
protobuf_protoc_bin-32.0rc2.dist-info/WHEEL,sha256=4WeZM9ZYiRuahMsnb6UGVG4lSN16GmgeLAWiMPJ2zuo,149
|
|
21
|
-
protobuf_protoc_bin-32.0rc2.dist-info/top_level.txt,sha256=afBaZDfluZv1nGzi4GoHBIk52GjoHfFL1zEMio0q_YA,20
|
|
22
|
-
protobuf_protoc_bin-32.0rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|