Skip to content

Commit

Permalink
Merge pull request #214 from mshriver/set-py38
Browse files Browse the repository at this point in the history
Set minimum version to py38
  • Loading branch information
Dmitrii Misharov committed Apr 4, 2022
2 parents 8a258d4 + ac92272 commit d3da950
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
browser: [chrome, firefox]
python-version: [pypy3, 3.6, 3.7, 3.8]
python-version: [3.8, 3.9]

steps:
- name: Pull selenium-standalone:latest
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.7.1
rev: v3.0.1
hooks:
- id: reorder-python-imports
language_version: python3
args:
- --application-directories=.:src
- repo: https://github.com/psf/black
rev: 22.1.0
rev: 22.3.0
hooks:
- id: black
args: [--safe, --quiet, --line-length, "100"]
Expand All @@ -31,12 +31,12 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
rev: v2.31.1
hooks:
- id: pyupgrade
language_version: python3
args: [--py36-plus]
args: [--py3-plus, --py38-plus]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v0.942
hooks:
- id: mypy
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ author_email = [email protected]
maintainer = Pete Savage
maintainer_email = [email protected]
description = Making testing of UIs fantastic
long_description= file: README.rst
long_description = file: README.rst
license = Apache license
url = https://github.com/RedHatQE/widgetastic.core
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Expand All @@ -22,6 +20,7 @@ classifiers =
Topic :: Software Development :: Testing

[options]
python_requires = >= 3.8
install_requires =
anytree
cached_property
Expand Down

0 comments on commit d3da950

Please sign in to comment.