Skip to content

Commit

Permalink
Remove PyVista from dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan authored Feb 2, 2023
1 parent acbfd2e commit 688bcc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
cache-dependency-path: pyproject.toml

- name: Install pytest-pyvista with test dependencies
run: pip install .[docs]
run: pip install .[docs] 'pyvista>=0.37'

- uses: awalsh128/cache-apt-pkgs-action@v1.1.3
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

- name: Install pytest-pyvista with test dependencies
run: |
pip install .[tests]
pip install .[tests] 'pyvista>=0.37'
- name: Set up vtk
if: ${{ matrix.vtk-version != 'latest' }}
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
github.event_name == 'push' &&
contains(github.ref, 'refs/tags')
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies=["pytest>=3.5.0", "pyvista>=0.37"]
dependencies=["pytest>=3.5.0"]
python_requires=">=3.7"

[project.urls]
Expand All @@ -34,7 +34,6 @@ tests = [
"coverage==7.0.5",
"pytest>=3.5.0",
"pytest-cov==4.0.0",
"pyvista",
"numpy<1.24",
]
docs = [
Expand Down

0 comments on commit 688bcc0

Please sign in to comment.