-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #769 from Hugovdberg/develop
chore: prepare v0.11.2
- Loading branch information
Showing
7 changed files
with
126 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# configure updates globally | ||
# default: all | ||
# allowed: all, insecure, False | ||
update: all | ||
|
||
# configure dependency pinning globally | ||
# default: True | ||
# allowed: True, False | ||
pin: True | ||
|
||
# set the default branch | ||
# default: empty, the default branch on GitHub | ||
branch: develop | ||
|
||
# update schedule | ||
# default: empty | ||
# allowed: "every day", "every week", .. | ||
schedule: "every two weeks on monday" | ||
|
||
# search for requirement files | ||
# default: True | ||
# allowed: True, False | ||
search: True | ||
|
||
# Specify requirement files by hand, default is empty | ||
# default: empty | ||
# allowed: list | ||
# requirements: | ||
# - requirements/staging.txt: | ||
# # update all dependencies and pin them | ||
# update: all | ||
# pin: True | ||
# - requirements/dev.txt: | ||
# # don't update dependencies, use global 'pin' default | ||
# update: False | ||
# - requirements/prod.txt: | ||
# # update insecure only, pin all | ||
# update: insecure | ||
# pin: True | ||
|
||
# add a label to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
label_prs: update | ||
|
||
# assign users to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# assignees: | ||
# - carl | ||
# - carlsen | ||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
branch_prefix: pyup/ | ||
|
||
# set a global prefix for PRs | ||
# default: empty | ||
# pr_prefix: "Bug #12345" | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
# close_prs: True |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
"""Type stubs for the AF SDK and dotnet libraries.""" | ||
|
||
from . import dotnet as System # noqa: I001 | ||
from . import AF | ||
|
||
AF_SDK_VERSION = "2.7_compatible" | ||
|
||
__all__ = ["AF", "AF_SDK_VERSION"] | ||
__all__ = ["AF", "AF_SDK_VERSION", "System"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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