Skip to content

Commit adfbf28

Browse files
committed
set version
1 parent 77e285f commit adfbf28

7 files changed

Lines changed: 28 additions & 153 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
19-
pip install setuptools wheel twine grpcio grpcio-tools protobuf
19+
pip install -r requirements.txt
2020
- name: Set VERSION environment variable
2121
run: |
2222
echo GitHub_ref: $GITHUB_REF

buf.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
version: v1beta1
1+
version: v1
22
build:
33
roots:
44
- src
55
lint:
66
use:
77
- DEFAULT
8-
ignore:
9-
- google
108
breaking:
119
use:
1210
- FILE

build.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ def create_files_tuples(dir):
4141
python_files = []
4242
print(f"create_files_tuples(dir={dir})")
4343
for root, dirs, files in os.walk(dir, topdown=True):
44-
# skip google folder
45-
if 'google' in dirs:
46-
dirs.remove('google')
4744
for file in files:
4845
path = os.path.join(root, file)
4946
if (file.endswith('.proto')) :

requirements.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
certifi==2023.7.22
2+
charset-normalizer==3.3.1
3+
docutils==0.20.1
4+
googleapis-common-protos==1.61.0
5+
grpcio==1.59.0
6+
grpcio-tools==1.59.0
7+
idna==3.4
8+
importlib-metadata==6.8.0
9+
jaraco.classes==3.3.0
10+
keyring==24.2.0
11+
markdown-it-py==3.0.0
12+
mdurl==0.1.2
13+
more-itertools==10.1.0
14+
nh3==0.2.14
15+
pkginfo==1.9.6
16+
protobuf==4.24.4
17+
Pygments==2.16.1
18+
pywin32-ctypes==0.2.2
19+
readme-renderer==42.0
20+
requests==2.31.0
21+
requests-toolbelt==1.0.0
22+
rfc3986==2.0.0
23+
rich==13.6.0
24+
twine==4.0.2
25+
urllib3==2.0.7
26+
zipp==3.17.0

src/google/type/date.proto

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/google/type/dayofweek.proto

Lines changed: 0 additions & 54 deletions
This file was deleted.

src/google/type/timeofday.proto

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)