Skip to content

Commit

Permalink
Disable compatability check because of release deadlock
Browse files Browse the repository at this point in the history
  • Loading branch information
schustmi committed Sep 9, 2024
1 parent 8c2a9e7 commit fe71a18
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ jobs:
secrets: inherit

# checks zenml and mlstacks can be installed together in same environment
compatibility-check:
needs: lint-unit-test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"

- name: Install current package as editable
run: pip install -e .

- name: Install zenml package
run: pip install zenml

- name: Check for broken dependencies
run: pip check
# compatibility-check:
# needs: lint-unit-test
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2

# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: "3.8"

# - name: Install current package as editable
# run: pip install -e .

# - name: Install zenml package
# run: pip install zenml

# - name: Check for broken dependencies
# run: pip check

publish-python-package:
needs: [lint-unit-test, compatibility-check]
Expand Down

0 comments on commit fe71a18

Please sign in to comment.