Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI; Remove python 3.7; remove flake8-isort #66

Merged
merged 3 commits into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ jobs:

matrix:
include:
- python-version: '3.7'
vtk-version: '9.0.3'
- python-version: '3.8'
vtk-version: '9.0.3'
- python-version: '3.9'
Expand Down
3 changes: 1 addition & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repos:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort

Expand All @@ -15,7 +15,6 @@ repos:
- id: flake8
additional_dependencies: [
"flake8-black==0.3.3",
"flake8-isort==4.2.0",
"flake8-quotes==3.3.1",
]

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fail.

Requirements
------------
You must have a Python version greater than 3.7, as well as PyVista installed
You must have a Python version >= 3.8, as well as PyVista installed
in your environment.

pyvista version >=0.37.0 and vtk version >=9.0.0 required.
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers=[
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -22,7 +21,7 @@ classifiers=[
"License :: OSI Approved :: MIT License",
]
dependencies=["pytest>=3.5.0"]
python_requires=">=3.7"
python_requires=">=3.8"

[project.urls]
Home = "https://github.com/pyvista/pytest-pyvista"
Expand Down