Skip to content

Commit

Permalink
Add support for py 3.8-3.11 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
exil authored Apr 27, 2023
1 parent 001c517 commit fb3a072
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 11 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## [Version 1.2.1](/~https://github.com/dataiku/dss-plugin-google-cloud-nlp/releases/tag/v1.2.1) - Support release - 2023-04

- Added support for Python 3.8-3.11

## [Version 1.2.0](/~https://github.com/dataiku/dss-plugin-google-cloud-nlp/releases/tag/v1.2.0) - Bugfix release - 2022-10

- Preserve zero values returned by the API

## [Version 1.0.1](/~https://github.com/dataiku/dss-plugin-google-cloud-nlp/releases/tag/v1.0.1) - Version release - 2020-10

- Enhance UX: move some parameters from hidden state in "Advanced" to "Configuration"
- Bump code-env requirements to latest versions
- Increase language coverage for Sentiment Analysis API to cover latest changes
- Add unit tests for the `api_parallelizer` module

## [Version 1.0.0](/~https://github.com/dataiku/dss-plugin-google-cloud-nlp/releases/tag/v1.0.0) - Initial release - 2020-05

- Initial release
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2020 Dataiku
Copyright 2020-2023 Dataiku

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
21 changes: 13 additions & 8 deletions code-env/python/desc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"acceptedPythonInterpreters": [
"PYTHON35",
"PYTHON36",
"PYTHON37"
],
"forceConda": false,
"installCorePackages": true,
"installJupyterSupport": false
"acceptedPythonInterpreters": [
"PYTHON35",
"PYTHON36",
"PYTHON37",
"PYTHON38",
"PYTHON39",
"PYTHON310",
"PYTHON311"
],
"corePackagesSet": "AUTO",
"forceConda": false,
"installCorePackages": true,
"installJupyterSupport": false
}
3 changes: 2 additions & 1 deletion code-env/python/spec/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
grpcio==1.32.0
grpcio==1.39.0; python_version <= '3.6'
grpcio==1.54.0; python_version > '3.6'
google-api-python-client==1.12.3
google-cloud-language==1.3.0
tqdm==4.50.1
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "google-cloud-nlp",
"version": "1.2.0",
"version": "1.2.1",
"meta": {
"label": "Google Cloud NLP",
"category": "Natural Language Processing",
Expand Down

0 comments on commit fb3a072

Please sign in to comment.