Skip to content

Commit

Permalink
Support duckdb v1.1.3 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
santosh-d3vpl3x authored Nov 7, 2024
1 parent e0acfd8 commit 7122502
Show file tree
Hide file tree
Showing 43 changed files with 200 additions and 321 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
/.idea/
**.ipynb
/csv
**.csv
**.csv
__pycache__/**.pyc
2 changes: 1 addition & 1 deletion LICENSE.txt → LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pip installable duckdb core extensions so you don't have to leave your python ec
- `osx_amd64`
- `windows_amd64`

Compatible with `duckdb==1.1.2`
Compatible with `duckdb==1.1.3`

Note:
- No `windows_amd64` for `duckdb_extension_substrait`
Expand Down
2 changes: 1 addition & 1 deletion _version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.2"
__version__ = "1.1.3a1"
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_arrow/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_arrow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_arrow"
description = "Duckdb arrow extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_autocomplete/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_autocomplete/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_autocomplete"
description = "Duckdb autocomplete extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_aws/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_aws/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_aws"
description = "Duckdb aws extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_azure/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_azure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_azure"
description = "Duckdb azure extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_delta/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_delta/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_delta"
description = "Duckdb delta extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_excel/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_excel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_excel"
description = "Duckdb excel extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_httpfs/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_httpfs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_httpfs"
description = "Duckdb httpfs extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_iceberg/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_iceberg/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_iceberg"
description = "Duckdb iceberg extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_inet/LICENSE.txt

This file was deleted.

8 changes: 5 additions & 3 deletions extensions/duckdb_extension_inet/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "duckdb_extension_inet"
description = "Duckdb inet extension"
requires-python = ">=3.8"
license = "MIT"
license = {text = "MIT"}
readme = "README.md"
keywords = []
authors = [
Expand All @@ -16,11 +16,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"duckdb==1.1.2",
"duckdb==1.1.3",
"importlib-resources==3.0.0;python_version<'3.9'",
]

Expand Down
9 changes: 0 additions & 9 deletions extensions/duckdb_extension_motherduck/LICENSE.txt

This file was deleted.

Loading

0 comments on commit 7122502

Please sign in to comment.