This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new f13e7e506a Python (legacy): Fix CI (#6495)
f13e7e506a is described below
commit f13e7e506a761bdc8c004e53478c0dd17739dde1
Author: Fokko Driesprong <[email protected]>
AuthorDate: Fri Dec 30 19:55:09 2022 +0100
Python (legacy): Fix CI (#6495)
---
.github/workflows/python-legacy-ci.yml | 2 +-
python_legacy/setup.py | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/python-legacy-ci.yml
b/.github/workflows/python-legacy-ci.yml
index f8704ac171..91e1c79e88 100644
--- a/.github/workflows/python-legacy-ci.yml
+++ b/.github/workflows/python-legacy-ci.yml
@@ -49,7 +49,7 @@ jobs:
- working-directory: ./python_legacy
run: |
pip install -e .[dev]
- pip install -U tox-gh-actions
+ pip install -U "tox-gh-actions==2.12.0"
- working-directory: ./python_legacy
run: tox
diff --git a/python_legacy/setup.py b/python_legacy/setup.py
index cbf120b8b7..0ab573b147 100755
--- a/python_legacy/setup.py
+++ b/python_legacy/setup.py
@@ -41,6 +41,7 @@ setup(
extras_require={
"dev": [
"tox-travis==0.12",
+ "tox>=2.0,<4",
"virtualenv<20.0.0",
],
},