Skip to content

Commit

Permalink
ci: remove pre flag for optional deps (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi authored Sep 23, 2024
1 parent 28f2600 commit 94ac54e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/schedule-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"


jobs:
cron-base:
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
if: always()
run: |
python -m pip install wheel
python -m pip install wheel
python -m pip install ${{ matrix.pre-release-dependencies }} -e ".[test]"
python -m pip freeze
- name: Test with pytest
Expand All @@ -37,7 +37,10 @@ jobs:
matrix:
python-version: ["3.10"]
os: [macos-latest, ubuntu-latest, windows-latest]
pre-release-dependencies: ["--pre", ""]
pre-release-dependencies: [
# "--pre",
"",
]
extra: ["cvxpy", "formulaic", "umap"]
steps:
- name: Checkout source code
Expand All @@ -49,8 +52,8 @@ jobs:
- name: Install dependencies
if: always()
run: |
python -m pip install wheel
python -m pip install ${{ matrix.pre-release-dependencies }} -e ".[test,${{ matrix.extra }}]"
python -m pip install wheel
python -m pip install ${{ matrix.pre-release-dependencies }} -e ".[test,${{ matrix.extra }}]"
python -m pip freeze
- name: Test with pytest
if: always()
Expand Down

0 comments on commit 94ac54e

Please sign in to comment.