Skip to content

Commit 454e359

Browse files
committed
unifying
1 parent ef9791d commit 454e359

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
uses: actions/setup-python@v3
1616
with:
1717
python-version: ${{ matrix.python-version }}
18+
- name: bootstrap-pip
19+
run: python -m pip install --upgrade pip
1820
- name: bootstrap
1921
run: python -m pip install pydmt
2022
- name: pydmt

config/personal.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# personal section
2-
firstname = 'Mark'
3-
surname = 'Veltzer'
4-
fullname = f'{firstname} {surname}'
5-
6-
domain = 'veltzer.name'
7-
slug = 'veltzer'
2+
firstname = "Mark"
3+
surname = "Veltzer"
4+
fullname = f"{firstname} {surname}"
5+
6+
domain = "veltzer.name"
7+
slug = "veltzer"
88

99
github_username = "veltzer"
1010
launchpad_username = "mark-veltzer"
@@ -13,16 +13,16 @@
1313
# it really should not have a passphrase since that will means that I have
1414
# to manually sign everything...
1515
# it must match the email_key up...
16-
key = '73C128F9'
17-
email_key = '[email protected]'
16+
key = "73C128F9"
17+
email_key = "[email protected]"
1818
# the person who is the owner of the key and must match *exactly* what you get
19-
# from 'gpg --list-keys'...
20-
key_signer = f'{fullname} (signkey, never expires) <{email_key}>'
19+
# from "gpg --list-keys"...
20+
key_signer = f"{fullname} (signkey, never expires) <{email_key}>"
2121

22-
origin = f'{fullname} <{email}>'
22+
origin = f"{fullname} <{email}>"
2323
# hostname as seen from the outside world
2424
www_hostname = domain
2525
# name as seen from the outside world
2626
www_domainname = domain
2727
# jsdoc style author tag
28-
jsdoc_author = f'{email} ({fullname})'
28+
jsdoc_author = f"{email} ({fullname})"

templates/.github/workflows/build.yml.mako

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
uses: actions/setup-python@v3
2121
with:
2222
python-version: ${"${{ matrix.python-version }}"}
23+
- name: bootstrap-pip
24+
run: python -m pip install --upgrade pip
2325
- name: bootstrap
2426
run: python -m pip install pydmt
2527
- name: pydmt

0 commit comments

Comments
 (0)