Skip to content

Commit

Permalink
start dropping python 3.6 (#387)
Browse files Browse the repository at this point in the history
* start dropping python 3.6

mainly for 5.1.0 release

* update tidelift alignment config CI (#375)

* update tidelift alignment config CI

* update tidelift CLI properly

* not needed on PR

* drop python from all matrix
  • Loading branch information
auvipy authored Jan 10, 2022
1 parent 557d98a commit 59af244
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6,3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy3]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2.3.4
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6,3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy3]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2.3.4
Expand Down
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ GIT=git
TOX=tox
ICONV=iconv
FLAKE8=flake8
FLAKEPLUS=flakeplus
PYDOCSTYLE=pydocstyle
SPHINX2RST=sphinx2rst

Expand All @@ -19,7 +18,7 @@ CONTRIBUTING=CONTRIBUTING.rst
CONTRIBUTING_SRC="docs/contributing.rst"
SPHINX_HTMLDIR="${SPHINX_BUILDDIR}/html"
DOCUMENTATION=Documentation
FLAKEPLUSTARGET=2.7


all: help

Expand All @@ -34,7 +33,6 @@ help:
@echo " contribcheck - Check CONTRIBUTING.rst encoding"
@echo " flakes -------- - Check code for syntax and style errors."
@echo " flakecheck - Run flake8 on the source code."
@echo " flakepluscheck - Run flakeplus on the source code."
@echo " pep257check - Run pep257 on the source code."
@echo "readme - Regenerate README.rst file."
@echo "contrib - Regenerate CONTRIBUTING.rst file"
Expand Down Expand Up @@ -85,16 +83,10 @@ flakecheck:
flakediag:
-$(MAKE) flakecheck

flakepluscheck:
$(FLAKEPLUS) --$(FLAKEPLUSTARGET) "$(PROJ)" "$(TESTDIR)"

flakeplusdiag:
-$(MAKE) flakepluscheck

pep257check:
$(PYDOCSTYLE) "$(PROJ)"

flakes: flakediag flakeplusdiag pep257check
flakes: flakediag pep257check

clean-readme:
-rm -f $(README)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
envlist =
{pypy3,3.6,3.7,3.8,3.9,3.10}-unit
{pypy3,3.6,3.7,3.8,3.9.3.10}-integration-rabbitmq
{pypy3,3.7,3.8,3.9,3.10}-unit
{pypy3,3.7,3.8,3.9.3.10}-integration-rabbitmq
flake8
flakeplus
apicheck
pydocstyle
requires = tox-docker>=2.0
Expand All @@ -15,7 +14,7 @@ deps=
-r{toxinidir}/requirements/test-ci.txt

apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
flake8,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
sitepackages = False
recreate = False
commands =
Expand All @@ -24,7 +23,6 @@ commands =
basepython =
flake8,apicheck,linkcheck,pydocstyle: python3.8
pypy3: pypy
3.6: python3.6
3.7: python3.7
3.8: python3.8
3.9: python3.9
Expand Down

0 comments on commit 59af244

Please sign in to comment.