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 635361c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ 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
# 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: 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 current package as editable
# run: pip install -e .

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

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

publish-python-package:
needs: [lint-unit-test, compatibility-check]
needs: [lint-unit-test]
uses: ./.github/workflows/publish-pypi-package.yml
secrets: inherit

0 comments on commit 635361c

Please sign in to comment.