Skip to content

Commit ab76ae6

Browse files
Updated files with 'repo_helper'.
1 parent c7a1287 commit ab76ae6

File tree

7 files changed

+16
-15
lines changed

7 files changed

+16
-15
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-22.04"
2020

2121
steps:
2222
- name: Checkout 🛎️

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-20.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/octocheese.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: domdfcoding/octocheese@master
1414
with:
15-
pypi_name: "domdf_python_tools"
15+
pypi_name: "domdf-python-tools"
1616
env:
1717
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
1818
if: startsWith(github.ref, 'refs/tags/') != true

.github/workflows/python_ci_linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
@@ -87,7 +87,7 @@ jobs:
8787

8888
Coverage:
8989
needs: tests
90-
runs-on: "ubuntu-20.04"
90+
runs-on: "ubuntu-22.04"
9191
steps:
9292
- name: Checkout 🛎️
9393
uses: "actions/checkout@v4"
@@ -136,7 +136,7 @@ jobs:
136136
Deploy:
137137
needs: tests
138138

139-
runs-on: "ubuntu-20.04"
139+
runs-on: "ubuntu-22.04"
140140
steps:
141141
- name: Checkout 🛎️
142142
uses: "actions/checkout@v4"
@@ -227,7 +227,7 @@ jobs:
227227
$CONDA/bin/conda install anaconda-client
228228
$CONDA/bin/conda info -a
229229
230-
for f in conda/dist/noarch/domdf_python_tools-*.tar.bz2; do
230+
for f in conda/dist/noarch/domdf-python-tools-*.tar.bz2; do
231231
[ -e "$f" ] || continue
232232
echo "$f"
233233
conda install "$f" || exit 1

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,4 @@ Pipfile.lock
8888
demo.py
8989
frozendict.py
9090
graaltest.sh
91+
misc

doc-source/index.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,22 @@ domdf_python_tools
7272
:alt: CodeFactor Grade
7373

7474
.. |pypi-version| pypi-shield::
75-
:project: domdf_python_tools
75+
:project: domdf-python-tools
7676
:version:
7777
:alt: PyPI - Package Version
7878

7979
.. |supported-versions| pypi-shield::
80-
:project: domdf_python_tools
80+
:project: domdf-python-tools
8181
:py-versions:
8282
:alt: PyPI - Supported Python Versions
8383

8484
.. |supported-implementations| pypi-shield::
85-
:project: domdf_python_tools
85+
:project: domdf-python-tools
8686
:implementations:
8787
:alt: PyPI - Supported Implementations
8888

8989
.. |wheel| pypi-shield::
90-
:project: domdf_python_tools
90+
:project: domdf-python-tools
9191
:wheel:
9292
:alt: PyPI - Wheel
9393

@@ -119,7 +119,7 @@ domdf_python_tools
119119
:alt: Maintenance
120120

121121
.. |pypi-downloads| pypi-shield::
122-
:project: domdf_python_tools
122+
:project: domdf-python-tools
123123
:downloads: month
124124
:alt: PyPI - Downloads
125125

@@ -138,7 +138,7 @@ Installation
138138

139139
.. start installation
140140
141-
.. installation:: domdf_python_tools
141+
.. installation:: domdf-python-tools
142142
:pypi:
143143
:github:
144144
:anaconda:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ commands =
112112
basepython = python3.8
113113
changedir = {toxinidir}
114114
ignore_errors = True
115-
skip_install = False
115+
skip_install = True
116116
deps =
117117
flake8>=3.8.2,<5
118118
flake8-2020>=1.6.0

0 commit comments

Comments
 (0)