Skip to content

Commit

Permalink
Update requirements and revise workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCompton committed Sep 28, 2024
1 parent cb4da07 commit a4beb1c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 67 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Check out repository code.
uses: actions/checkout@v3
Expand All @@ -40,21 +40,22 @@ jobs:
with:
name: notebook-site
path: |
dist
site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download a single artifact
uses: actions/download-artifact@v4
with:
name: notebook-site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
- name: Download a single artifact
uses: actions/download-artifact@v4
with:
name: notebook-site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
53 changes: 0 additions & 53 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,4 @@
annotated-types==0.7.0
anyio==4.6.0
babel==2.16.0
beautifulsoup4==4.12.3
bracex==2.5
certifi==2024.8.30
charset-normalizer==3.3.2
click==8.1.7
colorama==0.4.6
EditorConfig==0.12.4
fastapi==0.115.0
ghp-import==2.1.0
gitdb==4.0.11
GitPython==3.1.43
h11==0.14.0
httptools==0.6.1
idna==3.10
Jinja2==3.1.4
jsbeautifier==1.15.1
Markdown==3.7
MarkupSafe==2.1.5
mergedeep==1.3.4
mkdocs==1.6.1
mkdocs-awesome-pages-plugin==2.9.3
mkdocs-get-deps==0.2.0
Expand All @@ -29,37 +8,5 @@ mkdocs-material-extensions==1.3.1
mkdocs-mermaid2-plugin==1.1.1
mkdocs-render-swagger-plugin==0.1.2
mkdocs-table-reader-plugin==3.1.0
natsort==8.4.0
numpy==2.1.1
packaging==24.1
paginate==0.5.7
pandas==2.2.3
pathspec==0.12.1
platformdirs==4.3.6
pydantic==2.9.2
pydantic_core==2.23.4
Pygments==2.18.0
pymdown-extensions==10.10.1
python-dateutil==2.9.0.post0
python-dotenv==1.0.1
pytz==2024.2
PyYAML==6.0.2
pyyaml_env_tag==0.1
regex==2024.9.11
requests==2.32.3
setuptools==75.1.0
six==1.16.0
smmap==5.0.1
sniffio==1.3.1
soupsieve==2.6
starlette==0.38.6
tabulate==0.9.0
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.2.3
uvicorn==0.30.6
uvloop==0.20.0
watchdog==5.0.2
watchfiles==0.24.0
wcmatch==9.0
websockets==13.1

0 comments on commit a4beb1c

Please sign in to comment.