Skip to content

Commit 5ce1391

Browse files
Updated files with 'repo_helper'. (#58)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 621f2f2 commit 5ce1391

File tree

9 files changed

+24
-13
lines changed

9 files changed

+24
-13
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ search = : str = "{current_version}"
1818
replace = : str = "{new_version}"
1919

2020
[bumpversion:file:.github/workflows/conda_ci.yml]
21+
search = ={current_version}=py_1
22+
replace = ={new_version}=py_1

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.4,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.7,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: True}
37-
- {python-version: "3.12.0-alpha.4", testenvs: "py312-dev,build", experimental: True}
37+
- {python-version: "3.12.0-alpha.7", testenvs: "py312-dev,build", experimental: True}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.4,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.7,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311,build", experimental: True}
38-
- {python-version: "3.12.0-alpha.4", testenvs: "py312-dev,build", experimental: True}
38+
- {python-version: "3.12.0-alpha.7", testenvs: "py312-dev,build", experimental: True}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
4040
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4141
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.4,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-alpha.7,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: True}
37-
- {python-version: "3.12.0-alpha.4", testenvs: "py312-dev,build", experimental: True}
37+
- {python-version: "3.12.0-alpha.7", testenvs: "py312-dev,build", experimental: True}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4040
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ repos:
5454
- id: flake2lint
5555

5656
- repo: https://github.com/pre-commit/pygrep-hooks
57-
rev: v1.9.0
57+
rev: v1.10.0
5858
hooks:
5959
- id: python-no-eval
6060
- id: rst-backticks
@@ -70,7 +70,7 @@ repos:
7070
- --keep-runtime-typing
7171

7272
- repo: https://github.com/Lucas-C/pre-commit-hooks
73-
rev: v1.3.1
73+
rev: v1.5.1
7474
hooks:
7575
- id: remove-crlf
7676
- id: forbid-crlf
@@ -87,7 +87,7 @@ repos:
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8888

8989
- repo: https://github.com/domdfcoding/dep_checker
90-
rev: v0.7.0
90+
rev: v0.7.1
9191
hooks:
9292
- id: dep_checker
9393
args:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ coverage_pyver_pragma
3030
* - Other
3131
- |license| |language| |requires|
3232

33-
.. |docs| image:: https://img.shields.io/readthedocs/coverage_pyver_pragma/latest?logo=read-the-docs
34-
:target: https://coverage_pyver_pragma.readthedocs.io/en/latest
33+
.. |docs| image:: https://img.shields.io/readthedocs/coverage-pyver-pragma/latest?logo=read-the-docs
34+
:target: https://coverage-pyver-pragma.readthedocs.io/en/latest
3535
:alt: Documentation Build Status
3636

3737
.. |docs_check| image:: https://github.com/python-coincidence/coverage_pyver_pragma/workflows/Docs%20Check/badge.svg

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ coverage_pyver_pragma
3333
- |license| |language| |requires|
3434

3535
.. |docs| rtfd-shield::
36-
:project: coverage_pyver_pragma
36+
:project: coverage-pyver-pragma
3737
:alt: Documentation Build Status
3838

3939
.. |docs_check| actions-shield::

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ file = "LICENSE"
2222
Homepage = "https://github.com/python-coincidence/coverage_pyver_pragma"
2323
"Issue Tracker" = "https://github.com/python-coincidence/coverage_pyver_pragma/issues"
2424
"Source Code" = "https://github.com/python-coincidence/coverage_pyver_pragma"
25-
Documentation = "https://coverage_pyver_pragma.readthedocs.io/en/latest"
25+
Documentation = "https://coverage-pyver-pragma.readthedocs.io/en/latest"
2626

2727
[tool.whey]
2828
base-classifiers = [

tox.ini

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# * tox
44
# * envlists
55
# * testenv
6+
# * testenv:.package
67
# * testenv:py312-dev
78
# * testenv:docs
89
# * testenv:build
@@ -64,6 +65,11 @@ commands =
6465
python --version
6566
python -m pytest --cov=coverage_pyver_pragma -r aR tests/ {posargs}
6667

68+
[testenv:.package]
69+
setenv =
70+
PYTHONDEVMODE=1
71+
PIP_DISABLE_PIP_VERSION_CHECK=1
72+
6773
[testenv:py312-dev]
6874
setenv =
6975
PYTHONDEVMODE=1
@@ -78,6 +84,9 @@ deps = -r{toxinidir}/doc-source/requirements.txt
7884
commands = sphinx-build -M {env:SPHINX_BUILDER:html} . ./build {posargs}
7985

8086
[testenv:build]
87+
setenv =
88+
PYTHONDEVMODE=1
89+
PIP_DISABLE_PIP_VERSION_CHECK=1
8190
skip_install = True
8291
changedir = {toxinidir}
8392
deps =

0 commit comments

Comments
 (0)