-
Notifications
You must be signed in to change notification settings - Fork 1
eng: fix up project configuration - BNCH-112051 #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,5 @@ my-test-api-client/ | |
custom-e2e/ | ||
3-1-features-client | ||
localtest | ||
|
||
!tests/.env |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,12 @@ | |
from .parser.errors import ErrorLevel, GeneratorError | ||
from .parser.properties import LiteralEnumProperty | ||
|
||
__version__ = version(__package__) | ||
# __version__ = version(__package__) | ||
# Benchling-specific change: the original line above won't work because the installed package name of | ||
# our fork (benchling-openapi-python-client) deliberately does not match the base module name (see | ||
# pyproject.toml) | ||
INSTALLED_PACKAGE = "benchling-openapi-python-client" | ||
__version__ = version(INSTALLED_PACKAGE) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As noted in a comment I added to |
||
|
||
|
||
TEMPLATE_FILTERS = { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other CI jobs were already updated to 3.9 but I missed this one.