Skip to content

Commit

Permalink
AVRO-3696: Replace tox-wheel with standard tox
Browse files Browse the repository at this point in the history
Usage of third party tox-wheel package started failing since tox
released version 4 with native wheel. Any usage of tox-wheel is
replaced with standard tox package to fix Python tests.
  • Loading branch information
tvainika committed Dec 29, 2022
1 parent 7d6b402 commit 23b140a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-lang-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip setuptools tox-wheel
python3 -m pip install --upgrade pip setuptools tox
python3 -m pip install python-snappy zstandard
- name: Setup C# for Generating Interop Data
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lang-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
libzstd-dev
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip setuptools tox-wheel
python3 -m pip install --upgrade pip setuptools tox
python3 -m pip install python-snappy zstandard
- name: Create Interop Data Directory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-lang-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip setuptools tox-wheel
python3 -m pip install --upgrade pip setuptools tox
- name: Lint
if: ${{ matrix.python == '3.10' }}
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip setuptools tox-wheel
python3 -m pip install --upgrade pip setuptools tox
python3 -m pip install python-snappy zstandard
- name: Cache Local Maven Repository
Expand Down
2 changes: 1 addition & 1 deletion share/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ ENV PIP_NO_CACHE_DIR=off

# Install Python3 packages
RUN python3 -m pip install --upgrade pip setuptools wheel \
&& python3 -m pip install tox-wheel zstandard
&& python3 -m pip install tox zstandard


# Install Ruby
Expand Down

0 comments on commit 23b140a

Please sign in to comment.