Skip to content
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

Add Python version 3.13 to test matrix. #1377

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
647c710
Update python-ci.yml
JE-Chen Nov 26, 2024
8fbdb47
Bump Poetry to 1.8.4
Fokko Nov 26, 2024
f1b0c3c
Update python-ci.yml
JE-Chen Nov 26, 2024
a9dda30
Merge branch 'test_matrix' of https://github.com/JE-Chen/iceberg-pyth…
JE-Chen Nov 27, 2024
06f746b
use the non-deprecated func (#1326)
kevinjqliu Nov 15, 2024
2d4b8c8
0.8.0 post release steps (#1334)
kevinjqliu Nov 18, 2024
2b596a1
Drop upper bounds for fsspec and it's implementations (#1341)
sumanth-manchala Nov 19, 2024
8643938
Ignore tables without `table_type` from Glue and Hive
gitzwz Nov 19, 2024
f8cb1c0
Replace reference of `Table.identifier` with `Table.name` (#1346)
kevinjqliu Nov 20, 2024
f3323ab
Allow leading underscore in column name used in row filter (#1358)
vincenzon Nov 22, 2024
fe4375a
Remove Python 3.13 upper bound restriction (#1355)
bigluck Nov 22, 2024
c48cf52
Improve documentation for "how to release" (#1359)
kevinjqliu Nov 25, 2024
a89bd73
fix `KeyError` raised by `add_files` when parquet file doe not have c…
binayakd Nov 25, 2024
92f36ce
Add instruction for patch release (#1373)
kevinjqliu Nov 26, 2024
5030d04
Write `null` when there is no parent-snapshot-id (#1383)
Fokko Nov 27, 2024
a051584
bump to 0.8.1
kevinjqliu Nov 27, 2024
553949e
Bump coverage from 7.6.4 to 7.6.5 (#1325)
dependabot[bot] Nov 15, 2024
9ac0c8b
Bump mkdocstrings from 0.26.2 to 0.27.0 (#1324)
dependabot[bot] Nov 18, 2024
e618f9e
Bump coverage from 7.6.5 to 7.6.7 (#1329)
dependabot[bot] Nov 18, 2024
fef31e5
Bump aiohttp from 3.10.5 to 3.10.11 (#1338)
dependabot[bot] Nov 19, 2024
c7262e0
Bump moto from 5.0.20 to 5.0.21 (#1339)
dependabot[bot] Nov 19, 2024
74b3cbd
Remove deprecated `datetime` functions (#1134)
hussein-awala Nov 19, 2024
a871d10
Tests: Bump Spark to 3.5.3 (#1322)
Fokko Nov 19, 2024
e94bdcc
Bump mypy-boto3-glue from 1.35.53 to 1.35.65 (#1343)
dependabot[bot] Nov 19, 2024
dca997a
Bump deptry from 0.21.0 to 0.21.1 (#1342)
dependabot[bot] Nov 19, 2024
a6a5784
Bump `pre-commit` versions (#1344)
Fokko Nov 20, 2024
059ab62
Set default for `SortField`'s `transform` (#1347)
kevinjqliu Nov 20, 2024
fce785d
Boto Glue standard retry policy with configuration (#1307)
mark-major Nov 20, 2024
b19d181
dont override global warning (#1350)
kevinjqliu Nov 20, 2024
60da6ee
Bump pydantic from 2.9.1 to 2.10.0 (#1352)
dependabot[bot] Nov 20, 2024
5e70ef4
Bump mkdocs-material from 9.5.44 to 9.5.45 (#1351)
dependabot[bot] Nov 20, 2024
1f828e0
check mkdocs build strict in CI (#1360)
kevinjqliu Nov 22, 2024
d7c6b34
Bump pydantic from 2.10.0 to 2.10.1 (#1364)
dependabot[bot] Nov 24, 2024
38c4f93
Bump getdaft from 0.3.13 to 0.3.14 (#1361)
dependabot[bot] Nov 24, 2024
f5807a5
Bump mkdocs-material from 9.5.45 to 9.5.46 (#1376)
dependabot[bot] Nov 26, 2024
2c1fc06
Deprecate the use of `last-column-id` (#1367)
Fokko Nov 26, 2024
2367871
Bump coverage from 7.6.7 to 7.6.8 (#1375)
dependabot[bot] Nov 26, 2024
c657c55
Bump Poetry to 1.8.4
Fokko Nov 26, 2024
9e3a6ed
Update python-ci.yml
JE-Chen Nov 26, 2024
5a8f1f8
Merge branch 'test_matrix' of https://github.com/JE-Chen/iceberg-pyth…
JE-Chen Dec 23, 2024
d50de1e
Merge branch 'main' into test_matrix
JE-Chen Dec 23, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
python: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyiceberg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.
[tool.poetry]
name = "pyiceberg"
version = "0.8.0"
version = "0.8.1"
readme = "README.md"
homepage = "https://py.iceberg.apache.org/"
repository = "https://github.com/apache/iceberg-python"
Expand Down