Skip to content

Commit

Permalink
Merge pull request #320 from pcattori/python-38
Browse files Browse the repository at this point in the history
Official Python 3.8 support
  • Loading branch information
pcattori committed Dec 26, 2019
2 parents f34564e + 83fc2e9 commit 3013d39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
- [#309](https://github.com/Datatamer/tamr-client/issues/309) Migrate `SubAttribute` to use `@dataclass(frozen=True)`. `SubAttribute.__init__` constructor replaced with the one generated by `@dataclass`. `SubAttribute`s should be constructed via the `SubAttribute.from_json` static method.
- [#307](https://github.com/Datatamer/tamr-client/issues/307) Logging improvements: (1) Use standard logging best practices (2) log response body for responses containing HTTP error codes. Previous way to configure logging (via `Client.logger` and `Client.log_entry`) have been replaced. See [User Guide > Logging](https://tamr-client.readthedocs.io/en/latest/user-guide/logging.html).

**NEW FEATURES**
- [#295](https://github.com/Datatamer/tamr-client/issues/295) Official support for Python 3.6+. CI now tests against Python 3.6, 3.7, 3.8 .

**BUG FIXES**
- [#293](https://github.com/Datatamer/tamr-client/issues/293) Better handling for HTTP 204 on already up-to-date operations

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]

[tool.poetry.dependencies]
Expand Down

0 comments on commit 3013d39

Please sign in to comment.