Skip to content

Commit

Permalink
Merge pull request #19 from gforcada/drop-python-3-7
Browse files Browse the repository at this point in the history
Drop python 3.7
  • Loading branch information
gforcada committed Sep 16, 2023
2 parents 313fbaf + 5749aaa commit ade1b7c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.10", 3.9, 3.8, 3.7, pypy-3.9]
python-version: ["3.11", "3.10", 3.9, 3.8, pypy-3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Expand Up @@ -6,8 +6,8 @@ Changelog
1.0.1 (unreleased)
------------------

- Nothing changed yet.

- Drop python 3.7 support.
[gforcada]

1.0.0 (2022-10-09)
------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -67,7 +67,7 @@ Install with pip:
Requirements
------------
- Python 3.7, 3.8, 3.9, 3.10, 3.11 and pypy3
- Python 3.8, 3.9, 3.10, 3.11 and pypy3
- flake8

License
Expand Down
3 changes: 0 additions & 3 deletions requirements-lint.in
Expand Up @@ -12,11 +12,8 @@ flake8-pep3101
flake8-print
flake8-quotes
flake8-todo
importlib-metadata; python_version < '3.8'
isort
mypy
pytest
pytest-cov
pyupgrade
typed-ast; python_version < '3.8' # dependency of black and mypy
zipp; python_version < '3.8' # dependency of importlib-metadata
24 changes: 2 additions & 22 deletions requirements-lint.txt
@@ -1,6 +1,6 @@
#
# This file is autogenerated by pip-compile with python 3.7
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# pip-compile requirements-lint.in
#
Expand Down Expand Up @@ -66,15 +66,6 @@ gitpython==3.1.29
# via bandit
idna==3.4
# via requests
importlib-metadata==4.2.0 ; python_version < "3.8"
# via
# -r requirements-lint.in
# click
# flake8
# flake8-comprehensions
# pluggy
# pytest
# stevedore
iniconfig==1.1.1
# via pytest
isort==5.10.1
Expand Down Expand Up @@ -133,20 +124,9 @@ tomli==2.0.1
# coverage
# mypy
# pytest
typed-ast==1.5.4 ; python_version < "3.8"
# via
# -r requirements-lint.in
# black
# mypy
typing-extensions==4.4.0
# via
# black
# gitpython
# importlib-metadata
# mypy
urllib3==1.26.12
# via requests
zipp==3.10.0 ; python_version < "3.8"
# via
# -r requirements-lint.in
# importlib-metadata
1 change: 0 additions & 1 deletion requirements.in
@@ -1,5 +1,4 @@
coveralls
flake8
importlib-metadata; python_version < '3.8'
pytest
pytest-cov
14 changes: 2 additions & 12 deletions requirements.txt
@@ -1,6 +1,6 @@
#
# This file is autogenerated by pip-compile with python 3.7
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# pip-compile requirements.in
#
Expand All @@ -24,12 +24,6 @@ flake8==5.0.4
# via -r requirements.in
idna==3.4
# via requests
importlib-metadata==4.2.0 ; python_version < "3.8"
# via
# -r requirements.in
# flake8
# pluggy
# pytest
iniconfig==1.1.1
# via pytest
mccabe==0.7.0
Expand All @@ -56,9 +50,5 @@ tomli==2.0.1
# via
# coverage
# pytest
typing-extensions==4.4.0
# via importlib-metadata
urllib3==1.26.12
# via requests
zipp==3.9.0
# via importlib-metadata
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -32,7 +32,6 @@ def read_file(filename):
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -42,7 +41,7 @@ def read_file(filename):
'Topic :: Software Development',
'Topic :: Software Development :: Quality Assurance',
],
python_requires='>=3.7',
python_requires='>=3.8',
keywords='pep8 flake8 python plone',
author='Gil Forcada',
author_email='gil.gnome@gmail.com',
Expand Down

0 comments on commit ade1b7c

Please sign in to comment.