Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 1.1.0 - Enhancement release - 2026-07-20

- Added supported Python versions: 3.12, 3.13, 3.14

# Version 1.0.1 - 2025-05-13
* Fix check of unicity that was not working in case of retry due to rate limit.
* Freeze version of PyGithub due to breaking chances on more recent versions around rate limit.
Expand Down
11 changes: 9 additions & 2 deletions code-env/python/desc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"acceptedPythonInterpreters": ["PYTHON39", "PYTHON310", "PYTHON311"],
"acceptedPythonInterpreters": [
"PYTHON39",
"PYTHON310",
"PYTHON311",
"PYTHON312",
"PYTHON313",
"PYTHON314"
],
"forceConda": false,
"installCorePackages": true,
"installJupyterSupport": false,
"corePackagesSet": "AUTO"
}
}
26 changes: 14 additions & 12 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"id": "github",
"version": "1.0.1",
"meta": {
"label": "Github",
"description": "Retrieve data about Github repositories",
"author": "Dataiku",
"icon": "icon-github",
"tags": ["Connector"],
"url": "https://www.dataiku.com/product/plugins/github/",
"licenseInfo" : "Apache Software License version 2",
"supportLevel": "NOT_SUPPORTED"
}
"id": "github",
"version": "1.1.0",
"meta": {
"label": "Github",
"description": "Retrieve data about Github repositories",
"author": "Dataiku",
"icon": "icon-github",
"tags": [
"Connector"
],
"url": "https://www.dataiku.com/product/plugins/github/",
"licenseInfo": "Apache Software License version 2",
"supportLevel": "NOT_SUPPORTED"
}
}