-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: release 8.3.9 #70
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| """Package information.""" | ||
|
|
||
| __version__ = "8.3.8" | ||
| __build__ = "2026071409" | ||
| __version__ = "8.3.9" | ||
| __build__ = "2026082511" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,12 +14,9 @@ def queryAggregatedPoints( | |
| startTime: Optional[Date] = ..., | ||
| endTime: Optional[Date] = ..., | ||
| aggregates: Optional[List[Union[str, unicode]]] = ..., | ||
| fillModes: Optional[List[Union[str, unicode]]] = ..., | ||
| columnNames: Optional[List[Union[str, unicode]]] = ..., | ||
| returnFormat: str = ..., | ||
| returnSize: int = ..., | ||
| includeBounds: bool = ..., | ||
| excludeObservations: bool = ..., | ||
| ) -> BasicDataset: ... | ||
|
Contributor
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. issue (bug_risk): The repository contains a second Triggers: When a type checker resolves Suggested fix: Remove the obsolete parameters from |
||
| def queryAnnotations( | ||
| paths: List[Union[str, unicode]], | ||
|
|
@@ -39,8 +36,6 @@ def queryRawPoints( | |
| columnNames: Optional[List[Union[str, unicode]]] = ..., | ||
| returnFormat: str = ..., | ||
| returnSize: int = ..., | ||
| includeBounds: bool = ..., | ||
| excludeObservations: bool = ..., | ||
| ) -> BasicDataset: ... | ||
| def storeAnnotations(*args: Any, **kwargs: Any) -> List[BasicQualifiedValue]: ... | ||
| def storeDataPoints(*args: Any, **kwargs: Any) -> List[BasicQualifiedValue]: ... | ||
|
|
||
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.
issue (broader_impact): The package metadata still declares version 8.3.8 in
setup.cfg, while the runtime__version__is changed to 8.3.9, so building the main package produces an 8.3.8 distribution despite reporting 8.3.9 at runtime. The stubs package metadata instubs/pyproject.tomland the release configuration in.cz.tomllikewise remain at 8.3.8.Triggers: When the package or stubs are built or published from this commit.
Suggested fix: Update every packaging and release-version source, including
setup.cfg,stubs/pyproject.toml, and.cz.toml, to 8.3.9.