Skip to content

Commit a36aa9c

Browse files
authored
CI: Bump Python version to 3.13 (#843)
* CI: Bump Python version to 3.13 * dep: remove upper bound for pyiceberg
1 parent d53c4cc commit a36aa9c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: 3.12
27+
python-version: 3.13
2828
- name: Install requirements
2929
run: |
3030
python -m pip install -U pip
@@ -41,7 +41,7 @@ jobs:
4141
timeout-minutes: 20
4242
strategy:
4343
matrix:
44-
python: [3.9, 3.12]
44+
python: [3.9, 3.13]
4545
steps:
4646
- name: Checkout
4747
uses: actions/checkout@v3
@@ -69,7 +69,7 @@ jobs:
6969
- name: Setup Python
7070
uses: actions/setup-python@v4
7171
with:
72-
python-version: 3.12
72+
python-version: 3.13
7373
- name: Install requirements
7474
run: |
7575
python -m pip install -U pip

conda/post-link.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ $PREFIX/bin/pip install \
44
'rocksdict>=0.3,<0.4' \
55
'protobuf>=5.27.2,<7.0' \
66
'influxdb3-python>=0.7,<1.0' \
7-
'pyiceberg[pyarrow,glue]>=0.7,<0.8' \
7+
'pyiceberg[pyarrow,glue]>=0.7' \
88
'redis[hiredis]>=5.2.0,<6' \
99
'confluent-kafka[avro,json,protobuf,schemaregistry]>=2.8.2,<2.10'

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ all = [
3131
"fastavro>=1.8,<2.0",
3232
"protobuf>=5.27.2,<7.0",
3333
"influxdb3-python>=0.7,<1.0",
34-
"pyiceberg[pyarrow,glue]>=0.7,<0.8",
34+
"pyiceberg[pyarrow,glue]>=0.7",
3535
"google-cloud-bigquery>=3.26.0,<3.27",
3636
"google-cloud-pubsub>=2.23.1,<3",
3737
"psycopg2-binary>=2.9.9,<3",
@@ -48,8 +48,8 @@ all = [
4848
avro = ["fastavro>=1.8,<2.0"]
4949
protobuf = ["protobuf>=5.27.2,<7.0"]
5050
influxdb3 = ["influxdb3-python>=0.7,<1.0"]
51-
iceberg = ["pyiceberg[pyarrow]>=0.7,<0.8"]
52-
iceberg_aws = ["pyiceberg[pyarrow,glue]>=0.7,<0.8"]
51+
iceberg = ["pyiceberg[pyarrow]>=0.7"]
52+
iceberg_aws = ["pyiceberg[pyarrow,glue]>=0.7"]
5353
bigquery = ["google-cloud-bigquery>=3.26.0,<3.27"]
5454
pubsub = ["google-cloud-pubsub>=2.23.1,<3"]
5555
postgresql = ["psycopg2-binary>=2.9.9,<3"]

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ docker>=7.1.0 # Required to use requests>=2.32
55
fastavro>=1.8,<2.0
66
protobuf>=5.27.2,<7.0
77
influxdb3-python>=0.7.0,<1.0
8-
pyiceberg[pyarrow,glue]>=0.7,<0.8
8+
pyiceberg[pyarrow,glue]>=0.7
99
redis[hiredis]>=5.2.0,<6
1010
pandas>=1.0.0,<3.0

0 commit comments

Comments
 (0)