Skip to content

Commit

Permalink
ci: Drop python < v3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jdehaan committed Mar 17, 2023
1 parent 3c4488a commit d5db9da
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
image: Visual Studio 2022

environment:
matrix:
- PYTHON: Python27
- PYTHON: Python35
- PYTHON: Python38
- PYTHON: Python310

install:
- C:\%PYTHON%\Scripts\pip install -e .
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "2.7"
- "3.8"
- "3.10"
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
language: python

python:
- 2.7
- 3.4
- 3.5
- 3.8
- 3.10
- pypy
- pypy3

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ often very hard to get all the included folders and files right when
they are complicated. But we don't really need that kind of accuracy for
cyclomatic complexity.

It requires python2.7 or above (early versions are not verified).
It requires python3.8 or above (early versions are not verified).

Installation
------------
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def run(self):
'Programming Language :: JavaScript',
'Programming Language :: Objective C',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'],
cmdclass={'version': VersionCommand},
packages=['lizard_ext', 'lizard_languages'],
#data_files=[('lizard_ext', [])],
Expand Down

0 comments on commit d5db9da

Please sign in to comment.