Skip to content

Commit 361a318

Browse files
authored
fix(deps): Update dependency pyarrow to v13 (#19)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pyarrow](https://arrow.apache.org/) ([source](https://togithub.com/apache/arrow)) | major | `==12.0.1` -> `==13.0.0` | --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNzguMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
1 parent dc93551 commit 361a318

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: "3.x"
17+
python-version: "3.11"
1818
- name: Install dependencies
19-
run: pip install -r requirements.txt
19+
run: |
20+
pip install --upgrade pip
21+
pip install -r requirements.txt
2022
- name: Check formatting
2123
run: make fmt-check

.github/workflows/unittest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: '3.x'
19+
python-version: '3.11'
2020
- name: Install dependencies
21-
run: pip install -r requirements.txt
21+
run: |
22+
pip install --upgrade pip
23+
pip install -r requirements.txt
2224
- name: Run tests
2325
run: make test

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ black==23.9.1
22
grpcio-tools==1.59.0
33
grpcio==1.59.0
44
protobuf==4.24.3
5-
pyarrow==12.0.1
5+
pyarrow==13.0.0
66
pytest==7.4.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"grpcio >= 1.56.0",
1515
"grpcio-tools >= 1.56.0",
1616
"protobuf >= 4.23.4",
17-
"pyarrow >= 12.0.1",
17+
"pyarrow >= 13.0.0",
1818
]
1919
url = "https://github.com/cloudquery/plugin-pb-python"
2020

0 commit comments

Comments
 (0)