Skip to content

Commit 850a22f

Browse files
committed
build: Update to latest profile template
1 parent 7323a6d commit 850a22f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

common-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ sphinxcontrib-qthelp==1.0.3
158158
# via sphinx
159159
sphinxcontrib-serializinghtml==1.1.5
160160
# via sphinx
161-
standard-theme @ git+https://github.com/open-contracting/standard_theme.git@5d169dcc532807146e3f1dbcf7bae9c5be11c398#egg=standard_theme
161+
standard-theme @ git+https://github.com/open-contracting/standard_theme.git@dc06bcc22807e2d2950287746c4e5feb7988a131#egg=standard_theme
162162
# via -r common-requirements.in
163163
starlette==0.50.0
164164
# via sphinx-autobuild
@@ -181,7 +181,7 @@ uc-micro-py==1.0.1
181181
# via linkify-it-py
182182
url-normalize==1.4.3
183183
# via requests-cache
184-
urllib3==2.6.2
184+
urllib3==2.6.3
185185
# via
186186
# elastic-transport
187187
# requests

script/diff

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
# No -e, because diff uses exit status 1 when differences are found.
44
set -u
55

6-
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/docs/conf.py | diff -u - docs/conf.py
6+
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/docs/conf.py | diff -u - docs/conf.py
77

88
for f in .github/workflows/ci.yml .github/workflows/spellcheck.yml include/config.mk; do
9-
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/$f | diff -u - $f
9+
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/$f | diff -u - $f
1010
done
1111

1212
if [ -d util ] || [ -d schema/project-level ]; then
13-
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/.gitignore | diff -u - .gitignore
13+
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/.gitignore | diff -u - .gitignore
1414
else
15-
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/manage.py | diff -u - manage.py
15+
curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/manage.py | diff -u - manage.py
1616
fi

script/update

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ main() {
66
mkdir -p script include tests
77

88
for f in .pre-commit-config.yaml .python-version Makefile common-requirements.in common-requirements.txt pyproject.toml .github/dependabot.yml .github/workflows/lint.yml .github/workflows/shell.yml docs/_static/favicon-16x16.ico include/common.mk include/prologue.mk script/diff script/update tests/conftest.py tests/test_common.py; do
9-
curl -sS -o $f https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/$f
9+
curl -sS -o $f https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/$f
1010
done
1111

1212
if [ ! -d schema/project-level ]; then
13-
curl -sS -o .gitignore https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/.gitignore
13+
curl -sS -o .gitignore https://raw.githubusercontent.com/open-contracting/standard_profile_template/refs/heads/latest/.gitignore
1414
fi
1515

1616
chmod +x script/*

0 commit comments

Comments
 (0)