Skip to content

Commit

Permalink
* Drop Python 3.7
Browse files Browse the repository at this point in the history
* Update CI
  • Loading branch information
jschwartzentruber committed Jul 7, 2023
1 parent d6ef168 commit 081afc8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ repos:
hooks:
- id: isort
- repo: https://github.com/asottile/yesqa
rev: v1.4.0
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.8.0
hooks:
- id: pyupgrade
args: ['--py37-plus']
args: ['--py38-plus']
- repo: https://github.com/ambv/black
rev: 23.3.0
hooks:
Expand All @@ -37,16 +37,16 @@ repos:
args: ['--django']
- id: check-json
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.2.5
hooks:
- id: codespell
exclude_types: [json]
- repo: https://github.com/marco-c/taskcluster_yml_validator
rev: v0.0.9
rev: v0.0.10
hooks:
- id: taskcluster_yml
- repo: https://github.com/MozillaSecurity/orion
rev: v0.0.6
rev: v0.0.7
hooks:
- id: orion_ci
- repo: meta
Expand Down
4 changes: 0 additions & 4 deletions .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ tasks:
- tox; tox -e codecov
jobs:
include:
- name: tests python 3.7
version: "3.7"
env:
TOXENV: py37
- name: tests python 3.8
version: "3.8"
env:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ package_dir =
packages =
lithium
lithium.interestingness
python_requires = >=3.7
python_requires = >=3.8
zip_safe = False

[options.entry_points]
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311},lint
envlist = py{38,39,310,311},lint
skip_missing_interpreters = true
tox_pip_extensions_ext_venv_update = true

Expand Down Expand Up @@ -38,14 +38,14 @@ skip_install = true
commands =
mypy --install-types --non-interactive {posargs}
deps =
mypy==v1.2.0
mypy==v1.3.0
usedevelop = true

[testenv:pylint]
commands =
pylint {posargs}
deps =
pylint==2.17.2
pylint==2.17.4
usedevelop = true

[testenv:pypi]
Expand Down

0 comments on commit 081afc8

Please sign in to comment.