Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Get the version from the tag.
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- inspect
- github_release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install twine.
run: pip install twine
- name: Set the version number.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install package.
run: pip install -e .
- name: Install test dependencies.
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install package.
run: pip install .
- name: Build the test site.
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install the linter (flake8).
run: pip install flake8
- name: Run the linter.
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install package.
run: pip install .
- name: Install mypy.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'itsdangerous==2.1.2',
'jinja2==3.1.2',
'markdown==3.4.1',
'markupsafe==2.1.1',
'markupsafe==3.0.3',
'pygments==2.13.0',
'pymdown-extensions==9.7',
'pyscss @ git+https://github.com/aip-dev/pyScss.git@master',
Expand Down
Loading