-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/variable-owner-examples
- Loading branch information
Showing
14 changed files
with
699 additions
and
810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pip==24.3.1 | ||
nox==2024.10.9 | ||
nox-poetry==1.0.3 | ||
poetry==1.8.4 | ||
poetry==1.8.5 | ||
virtualenv==20.28.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,11 +61,11 @@ jobs: | |
- name: Publish package on PyPI | ||
if: steps.check-version.outputs.tag | ||
uses: pypa/[email protected].2 | ||
uses: pypa/[email protected].3 | ||
|
||
- name: Publish package on TestPyPI | ||
if: (!steps.check-version.outputs.tag) | ||
uses: pypa/[email protected].2 | ||
uses: pypa/[email protected].3 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/dapla_metadata/variable_definitions/generated/.openapi-generator/VERSION
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.9.0 | ||
7.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,6 @@ | |
from dapla_metadata.variable_definitions.generated.vardef_client.models.patch import ( | ||
Patch, | ||
) | ||
from dapla_metadata.variable_definitions.generated.vardef_client.models.person import ( | ||
Person, | ||
) | ||
from dapla_metadata.variable_definitions.generated.vardef_client.models.update_draft import ( | ||
UpdateDraft, | ||
) | ||
|
@@ -115,9 +112,9 @@ def sample_variable_definition() -> VariableDefinition: | |
), | ||
owner=Owner(team="my_team", groups=["my_team_developers"]), | ||
created_at=date(2024, 11, 1), | ||
created_by=Person(code="724", name="name"), | ||
created_by="[email protected]", | ||
last_updated_at=date(2024, 11, 1), | ||
last_updated_by=Person(code="724", name="name"), | ||
last_updated_by="[email protected]", | ||
) | ||
|
||
|
||
|
Oops, something went wrong.