Skip to content

Commit

Permalink
Roll to Python 3.7-3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
eumiro committed Sep 3, 2022
1 parent c2913ef commit b34c275
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3"]

steps:
- uses: "actions/checkout@v2"
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ repos:
- id: python-check-blanket-noqa
- id: rst-backticks
- repo: https://github.com/psf/black
rev: 20.8b1
rev: 22.8.0
hooks:
- id: black
args: [--safe, --quiet, --target-version=py36]
Expand All @@ -48,7 +48,7 @@ repos:
args:
- --skip
- B101
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@ ed(1) in Python
.. image:: https://github.com/eumiro/ed/workflows/CI/badge.svg
:target: https://github.com/eumiro/ed/actions?query=workflow%3ACI

.. image:: https://img.shields.io/pypi/v/ed.svg
:target: https://pypi.org/project/ed/

.. image:: https://img.shields.io/pypi/pyversions/ed.svg
:target: https://pypi.org/project/ed/

.. image:: https://img.shields.io/github/license/eumiro/ed
:target: https://github.com/eumiro/ed/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Text Editors",
"Topic :: Text Editors :: Text Processing",
"Topic :: Utilities",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py310
py39
py38
py37
py36

[testenv]
deps =
Expand All @@ -13,8 +13,8 @@ commands =

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39, docs, lint, manifest
3.9: py39
3.10: py310, docs, lint, manifest
pypy3: pypy3

0 comments on commit b34c275

Please sign in to comment.