Skip to content

Commit

Permalink
build: Update to latest profile template
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Aug 22, 2023
1 parent ef56d09 commit a9fa7db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 23 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.10'
cache: pip
cache-dependency-path: '**/requirements*.txt'
# Don't install editable projects in the current working directory.
Expand All @@ -22,9 +22,6 @@ jobs:
- run: |
make linkcheck
find . \( -name output.json -o -name output.txt \) -exec rm -r "{}" \;
# Google Chrome and ChromeDriver are already included.
# https://help.github.com/en/actions/reference/software-installed-on-github-hosted-runners
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md
- run: pytest -W error
# Deploy the built documentation to the staging directory.
- if: github.event_name == 'push'
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
/*.pdf
/build
/cache.sqlite
/chromedriver
/chromedriver_linux64.zip
/chromedriver_mac64.zip
/chromedriver_win32.zip
/docs/_static/patched
/src
*.pyc
17 changes: 3 additions & 14 deletions common-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ certifi==2023.7.22
# via
# elastic-transport
# requests
# urllib3
cffi==1.15.0
# via cryptography
# selenium
charset-normalizer==3.1.0
# via requests
click==8.1.3
Expand All @@ -44,10 +42,6 @@ click==8.1.3
# sphinx-intl
colorama==0.4.4
# via sphinx-autobuild
cryptography==41.0.3
# via
# pyopenssl
# urllib3
docutils==0.18
# via
# myst-parser
Expand All @@ -66,7 +60,6 @@ idna==2.10
# via
# requests
# trio
# urllib3
imagesize==1.4.1
# via sphinx
iniconfig==1.1.1
Expand Down Expand Up @@ -116,12 +109,8 @@ platformdirs==3.9.1
# via requests-cache
pluggy==0.13.1
# via pytest
pycparser==2.21
# via cffi
pygments==2.15.1
# via sphinx
pyopenssl==22.0.0
# via urllib3
pyparsing==2.4.7
# via packaging
pyproject-hooks==1.0.0
Expand All @@ -142,7 +131,7 @@ requests==2.31.0
# sphinx
requests-cache==1.1.0
# via ocdsextensionregistry
selenium==4.1.3
selenium==4.11.2
# via -r common-requirements.in
six==1.15.0
# via
Expand Down Expand Up @@ -197,7 +186,7 @@ uc-micro-py==1.0.1
# via linkify-it-py
url-normalize==1.4.3
# via requests-cache
urllib3[secure,socks]==1.26.5
urllib3[socks]==1.26.5
# via
# elastic-transport
# requests
Expand Down
2 changes: 1 addition & 1 deletion include/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LOCALE_DIR=docs/locale
# Directory in which to build documentation files.
BUILD_DIR=build
# Extra build files or directories. (These should match paths in .gitignore.)
EXTRA_BUILD_FILES=chromedriver* docs/_static/patched
EXTRA_BUILD_FILES=docs/_static/patched
# Files that are built and distributed (you may use Bash extended globbing).
DIST_FILES=schema/profile/release-schema.json schema/profile/codelists schema/patched
# Directory in which to build .pot files.
Expand Down

0 comments on commit a9fa7db

Please sign in to comment.