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

Drop support for Python 3.7 #183

Closed
wants to merge 1 commit into from
Closed
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
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
4 changes: 1 addition & 3 deletions DEVELOPMENT.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ Double-check on `tox.ini <https://github.com/carsongee/pytest-pylint//lob/master

.. code-block:: shell

pyenv install 3.7.7

pyenv install 3.8.2

pyenv install 3.9.13
Expand All @@ -76,7 +74,7 @@ Set the installed versions as global, that will allow tox to find all of them.

.. code-block:: shell

pyenv global 3.10.6 3.9.13 3.8.2 3.7.7
pyenv global 3.10.6 3.9.13 3.8.2

Create virtualenv, install dependencies, run tests, and tox:

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@
url="https://github.com/carsongee/pytest-pylint",
packages=["pytest_pylint"],
entry_points={"pytest11": ["pylint = pytest_pylint.plugin"]},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=["pytest>=5.4", "pylint>=2.3.0", "toml>=0.7.1"],
setup_requires=["pytest-runner"],
tests_require=["coverage", "flake8", "black", "isort"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
Loading