Skip to content

Commit

Permalink
Fix CI; Remove python 3.7; remove flake8-isort (#66)
Browse files Browse the repository at this point in the history
* remove python 3.7

* remove flake8-isort

* bump isort version
  • Loading branch information
MatthewFlamm authored Aug 22, 2023
1 parent 95da764 commit bd00d45
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
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

0 comments on commit bd00d45

Please sign in to comment.