Skip to content

Commit a74801d

Browse files
authored
Release (#98)
2 parents ee428b5 + 6b6cf29 commit a74801d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
jobs:
10-
build:
10+
test:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:

makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ grpc-client: install download
3030
@echo Generating Proto Sources
3131
@echo $(OUTPUT)
3232
@mkdir -p $(OUTPUT)
33+
# protoc doesn't create the __init__.py for the nitric module, so we need to create it.
34+
@mkdir -p $(OUTPUT)/nitric/
35+
@touch $(OUTPUT)/nitric/__init__.py
3336
@python3 -m grpc_tools.protoc -I $(CONTRACTS) --python_betterproto_out=$(OUTPUT) ./contracts/proto/*/*/*.proto
3437

3538

@@ -39,7 +42,7 @@ license:
3942
@licenseheaders -t tools/apache-2.tmpl -o "Nitric Technologies Pty Ltd" -y 2021 -n "Nitric Python 3 SDK" -u "https://github.com/nitrictech/python-sdk" -d tests
4043
@licenseheaders -t tools/apache-2.tmpl -o "Nitric Technologies Pty Ltd" -y 2021 -n "Nitric Python 3 SDK" -u "https://github.com/nitrictech/python-sdk" -d tools
4144

42-
build: clean install license docs
45+
build: clean grpc-client license docs
4346
@echo Building sdist and wheel
4447
@python3 setup.py sdist bdist_wheel
4548

nitric/proto/nitric/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)