Skip to content

Commit

Permalink
Revert "add protobuf to install setup"
Browse files Browse the repository at this point in the history
This reverts commit 4923ce5.
  • Loading branch information
alik-git committed Dec 19, 2024
1 parent 7801b63 commit 6f6ac25
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,6 @@ jobs:
with:
python-version: "3.11"

- name: Install system dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
shell: bash

- name: Install system dependencies (macOS)
if: matrix.os == 'macos-latest'
run: |
brew install protobuf
shell: bash

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -53,12 +40,6 @@ jobs:
- name: Build package
env:
CIBW_SKIP: "pp* *-musllinux*" # Skip PyPy and musllinux builds
CIBW_BEFORE_BUILD: >
if [ "$(uname)" = "Darwin" ]; then
brew install protobuf;
else
yum install -y protobuf-compiler || apt-get install -y protobuf-compiler;
fi
run: |
cibuildwheel --output-dir dist
Expand All @@ -83,12 +64,6 @@ jobs:
with:
python-version: "3.11"

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
shell: bash

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 6f6ac25

Please sign in to comment.