Skip to content

Commit 28f7edf

Browse files
committed
Updated config files.
1 parent 27e42c0 commit 28f7edf

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "windows-2019"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9-dev'
15+
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8","pypy3","3.9-dev"]
20+
python-version: ["3.6","3.7","3.8","pypy3"]
2121

2222

2323
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "macos-latest"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9-dev'
15+
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8","pypy3","3.9-dev"]
20+
python-version: ["3.6","3.7","3.8","pypy3"]
2121

2222

2323
steps:

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ repos:
2222
- id: mixed-line-ending
2323

2424
- repo: https://github.com/domdfcoding/pre-commit-hooks
25-
rev: v0.0.3
25+
rev: v0.0.4
2626
hooks:
2727
- id: requirements-txt-sorter
2828
args: [--allow-git]
2929
- id: check-docstring-first
30+
- id: bind-requirements
3031

3132
- repo: https://github.com/domdfcoding/flake8-dunder-all
3233
rev: v0.0.4

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ domdf_python_tools
2929

3030
.. |docs| image:: https://img.shields.io/readthedocs/domdf_python_tools/latest?logo=read-the-docs
3131
:target: https://domdf_python_tools.readthedocs.io/en/latest/?badge=latest
32-
:alt: Documentation Status
32+
:alt: Documentation Build Status
3333

3434
.. |docs_check| image:: https://github.com/domdfcoding/domdf_python_tools/workflows/Docs%20Check/badge.svg
3535
:target: https://github.com/domdfcoding/domdf_python_tools/actions?query=workflow%3A%22Docs+Check%22

doc-source/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1+
git+git://github.com/domdfcoding/sphinx-autodoc-typehints.git@typevar-as-pydata
12
autodocsumm>=0.2.0
23
default_values>=0.0.8
34
domdf_sphinx_theme>=0.1.0
4-
extras_require
5+
extras_require>=0.1.1
56
seed_intersphinx_mapping>=0.1.1
67
sphinx>=3.0.3
78
sphinx-copybutton>=0.2.12
8-
sphinx-notfound-page
9+
sphinx-notfound-page>=0.5
910
sphinx-prompt>=1.2.0
1011
sphinx-tabs>=1.1.13
1112
sphinx-toolbox>=0.1.0
1213
sphinxcontrib-httpdomain>=1.7.0
1314
sphinxemoji>=0.1.6
1415
toctree_plus>=0.0.3
15-
git+git://github.com/domdfcoding/sphinx-autodoc-typehints.git@typevar-as-pydata

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,5 @@ exclude =
4848

4949
[mypy]
5050
python_version = 3.6
51-
ignore_missing_imports = True
5251
namespace_packages = True
5352
check_untyped_defs = True

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,19 @@ deps = isort >=5.1.4
105105
commands = isort domdf_python_tools tests
106106

107107

108+
108109
[testenv:mypy]
109110
basepython = python3.6
110111

111112
ignore_errors = true
112113
changedir = {toxinidir}
113114
deps =
114-
mypy
115+
mypy==0.782
115116
-r{toxinidir}/tests/requirements.txt
116117
commands = mypy domdf_python_tools tests
117118

118119

120+
119121
[testenv:pyup]
120122
basepython = python3.6
121123
skip_install = true

0 commit comments

Comments
 (0)