File tree Expand file tree Collapse file tree 3 files changed +16
-12
lines changed
templates/.github/workflows Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 15
15
uses : actions/setup-python@v3
16
16
with :
17
17
python-version : ${{ matrix.python-version }}
18
+ - name : bootstrap-pip
19
+ run : python -m pip install --upgrade pip
18
20
- name : bootstrap
19
21
run : python -m pip install pydmt
20
22
- name : pydmt
Original file line number Diff line number Diff line change 1
1
# 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"
8
8
9
9
github_username = "veltzer"
10
10
launchpad_username = "mark-veltzer"
13
13
# it really should not have a passphrase since that will means that I have
14
14
# to manually sign everything...
15
15
# it must match the email_key up...
16
- key = ' 73C128F9'
17
-
16
+ key = " 73C128F9"
17
+
18
18
# 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 } >"
21
21
22
- origin = f' { fullname } <{ email } >'
22
+ origin = f" { fullname } <{ email } >"
23
23
# hostname as seen from the outside world
24
24
www_hostname = domain
25
25
# name as seen from the outside world
26
26
www_domainname = domain
27
27
# jsdoc style author tag
28
- jsdoc_author = f' { email } ({ fullname } )'
28
+ jsdoc_author = f" { email } ({ fullname } )"
Original file line number Diff line number Diff line change 20
20
uses: actions/setup-python@v3
21
21
with:
22
22
python-version: ${ " ${{ matrix.python-version }} " }
23
+ - name: bootstrap-pip
24
+ run: python -m pip install --upgrade pip
23
25
- name: bootstrap
24
26
run: python -m pip install pydmt
25
27
- name: pydmt
You can’t perform that action at this time.
0 commit comments