Skip to content

Commit 0566d9d

Browse files
Updated files with 'repo_helper'. (#44)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 058d578 commit 0566d9d

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ THE ISSUE WILL BE CLOSED IF INSUFFICIENT INFORMATION IS PROVIDED.
1717

1818

1919
## Steps to Reproduce
20-
<!--Please add a series of steps to reproduce the issue-->
20+
<!--Please add a series of steps to reproduce the issue.
21+
22+
If possible, please include a small, self-contained reproduction.
23+
-->
2124

2225
1.
2326
2.

.github/workflows/python_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,9 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2727
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2929

3030
steps:
3131
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,9 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2727
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2929

3030
steps:
3131
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,9 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2727
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2929

3030
steps:
3131
- name: Checkout 🛎️

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ Homepage = "https://github.com/domdfcoding/domdf_python_tools"
2121
"Issue Tracker" = "https://github.com/domdfcoding/domdf_python_tools/issues"
2222
"Source Code" = "https://github.com/domdfcoding/domdf_python_tools"
2323
Documentation = "https://domdf_python_tools.readthedocs.io/en/latest"
24+
25+
[project.optional-dependencies]
26+
dates = [ "pytz>=2019.1",]
27+
testing = [ "pytest>=6.2.0", "pytest-regressions>=2.0.2",]
28+
all = [ "pytest>=6.2.0", "pytest-regressions>=2.0.2", "pytz>=2019.1",]

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ commands = sphinx-build -M html . ./build {posargs}
3939
skip_install = True
4040
changedir = {toxinidir}
4141
deps =
42-
virtualenv
43-
git+https://github.com/pypa/build
42+
build[virtualenv]>=0.3.1
4443
check-wheel-contents>=0.1.0
4544
twine>=3.2.0
4645
commands =

0 commit comments

Comments
 (0)