Skip to content

Commit 4e92dca

Browse files
Updated files with 'repo_helper'. (#70)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent d28c5ae commit 4e92dca

File tree

8 files changed

+26
-11
lines changed

8 files changed

+26
-11
lines changed

.bumpversion.cfg

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

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

.github/workflows/conda_ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
tests:
1414
name: "Conda"
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-22.04
1616
defaults:
1717
run:
1818
shell: bash -l {0}
@@ -30,7 +30,9 @@ jobs:
3030
uses: conda-incubator/setup-miniconda@v2
3131
with:
3232
activate-environment: env
33-
conda-build-version: 3.21.0
33+
conda-build-version: 3.23.3
34+
python-version: "3.8"
35+
miniforge-variant: Mambaforge
3436

3537
- name: Install dependencies 🔧
3638
run: |

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176

177177
Conda:
178178
needs: deploy
179-
runs-on: "ubuntu-18.04"
179+
runs-on: ubuntu-22.04
180180
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
181181
steps:
182182
- name: Checkout 🛎️
@@ -191,7 +191,9 @@ jobs:
191191
uses: conda-incubator/setup-miniconda@v2
192192
with:
193193
activate-environment: env
194-
conda-build-version: 3.21.0
194+
conda-build-version: 3.23.3
195+
python-version: "3.8"
196+
miniforge-variant: Mambaforge
195197

196198
- name: Install dependencies 🔧
197199
run: |

.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 @@ seed_intersphinx_mapping
3030
* - Other
3131
- |license| |language| |requires|
3232

33-
.. |docs| image:: https://img.shields.io/readthedocs/seed_intersphinx_mapping/latest?logo=read-the-docs
34-
:target: https://seed_intersphinx_mapping.readthedocs.io/en/latest
33+
.. |docs| image:: https://img.shields.io/readthedocs/seed-intersphinx-mapping/latest?logo=read-the-docs
34+
:target: https://seed-intersphinx-mapping.readthedocs.io/en/latest
3535
:alt: Documentation Build Status
3636

3737
.. |docs_check| image:: https://github.com/sphinx-toolbox/seed_intersphinx_mapping/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 @@ seed_intersphinx_mapping
3333
- |license| |language| |requires|
3434

3535
.. |docs| rtfd-shield::
36-
:project: seed_intersphinx_mapping
36+
:project: seed-intersphinx-mapping
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/sphinx-toolbox/seed_intersphinx_mapping"
2323
"Issue Tracker" = "https://github.com/sphinx-toolbox/seed_intersphinx_mapping/issues"
2424
"Source Code" = "https://github.com/sphinx-toolbox/seed_intersphinx_mapping"
25-
Documentation = "https://seed_intersphinx_mapping.readthedocs.io/en/latest"
25+
Documentation = "https://seed-intersphinx-mapping.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
@@ -53,6 +54,11 @@ commands =
5354
python --version
5455
python -m pytest --cov=seed_intersphinx_mapping -r aR tests/ {posargs}
5556

57+
[testenv:.package]
58+
setenv =
59+
PYTHONDEVMODE=1
60+
PIP_DISABLE_PIP_VERSION_CHECK=1
61+
5662
[testenv:docs]
5763
setenv = SHOW_TODOS = 1
5864
passenv = SPHINX_BUILDER
@@ -62,6 +68,9 @@ deps = -r{toxinidir}/doc-source/requirements.txt
6268
commands = sphinx-build -M {env:SPHINX_BUILDER:html} . ./build {posargs}
6369

6470
[testenv:build]
71+
setenv =
72+
PYTHONDEVMODE=1
73+
PIP_DISABLE_PIP_VERSION_CHECK=1
6574
skip_install = True
6675
changedir = {toxinidir}
6776
deps =

0 commit comments

Comments
 (0)