Skip to content

Commit 42c6d6d

Browse files
author
Ronen Hilewicz
authored
Merge pull request #2 from aserto-dev/gen-v3
Generate v3 directory bindings
2 parents b8e6c18 + 0e51439 commit 42c6d6d

File tree

109 files changed

+7355
-424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+7355
-424
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
env:
2020
VAULT_ADDR: https://vault.eng.aserto.com/
21-
GO_VERSION: "1.17"
21+
GO_VERSION: "1.19"
2222

2323
jobs:
2424
build:

Depfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
go:
33
buf:
44
importPath: "github.com/bufbuild/buf/cmd/buf"
5-
version: "v1.4.0"
5+
version: "v1.26.1"
66
sver:
77
importPath: "github.com/aserto-dev/sver/cmd/sver"
8-
version: "v1.3.9"
8+
version: "v1.3.13"

buf/buf.gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ version: v1
22
managed:
33
enabled: true
44
plugins:
5-
- remote: buf.build/grpc/plugins/python
5+
- plugin: buf.build/grpc/python
66
out: ./src
7-
- remote: buf.build/protocolbuffers/plugins/python
7+
- plugin: buf.build/protocolbuffers/python
88
out: ./src
99
- name: "mypy"
1010
out: "./src"

magefiles/magefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const (
2626
)
2727

2828
func init() {
29-
os.Setenv("GO_VERSION", "1.17")
29+
os.Setenv("GO_VERSION", "1.19")
3030
os.Setenv("GOPRIVATE", "github.com/aserto-dev")
3131
}
3232

poetry.lock

Lines changed: 50 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aserto-directory"
3-
version = "0.21.0"
3+
version = "0.30.0"
44
description = "gRPC client for Aserto Directory service instances"
55
readme = "README.md"
66
authors = ["Aserto, Inc. <[email protected]>"]
@@ -15,9 +15,11 @@ classifiers = [
1515
"Programming Language :: Python",
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.7",
1918
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
2123
"Topic :: Software Development :: Libraries",
2224
"Typing :: Typed",
2325
]
@@ -27,13 +29,12 @@ packages = [
2729

2830

2931
[tool.poetry.dependencies]
30-
python = "^3.7"
31-
typing-extensions = "^3.10.0"
32+
python = ">=3.8"
3233

3334
[tool.poetry.dev-dependencies]
34-
mypy = "^0.910"
35-
mypy-protobuf = "^3.3.0"
36-
black = "^22.10.0"
35+
mypy = "^1.6.1"
36+
mypy-protobuf = "^3.5.0"
37+
black = "^23.10.1"
3738
isort = "^5.10.1"
3839

3940
[tool.mypy]

0 commit comments

Comments
 (0)