-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bugfix/fips-hashlib-md5
- Loading branch information
Showing
49 changed files
with
17,977 additions
and
990 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,36 +14,36 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
- uses: pre-commit/[email protected].0 | ||
python-version: 3.9 | ||
- uses: pre-commit/[email protected].1 | ||
|
||
tests: | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
sphinx-version: ["~=7.0"] | ||
include: | ||
- os: ubuntu-latest | ||
python-version: 3.8 | ||
python-version: 3.9 | ||
sphinx-version: "~=5.0" | ||
- os: ubuntu-latest | ||
python-version: 3.8 | ||
python-version: 3.9 | ||
sphinx-version: "~=6.0" | ||
- os: windows-latest | ||
python-version: 3.8 | ||
python-version: 3.9 | ||
sphinx-version: "~=7.0" | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -57,9 +57,10 @@ jobs: | |
run: | | ||
pytest --cov=sphinx_design --cov-report=xml --cov-report=term-missing | ||
- name: Upload to Codecov | ||
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest' | ||
if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
name: pytests | ||
flags: pytests | ||
file: ./coverage.xml | ||
|
@@ -73,7 +74,7 @@ jobs: | |
format: [html, latex, man] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -112,11 +113,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
python-version: 3.9 | ||
- name: install flit | ||
run: | | ||
pip install flit~=3.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.9" | ||
|
||
python: | ||
version: "3.8" | ||
install: | ||
- method: pip | ||
path: . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
body { | ||
--sd-fontsize-dropdown: var(--admonition-font-size); | ||
--sd-fontsize-dropdown-title: var(--admonition-title-font-size); | ||
--sd-fontweight-dropdown-title: 500; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
body { | ||
--sd-fontsize-dropdown: .64rem; | ||
--sd-fontsize-dropdown-title: .64rem; | ||
--sd-fontweight-dropdown-title: 700; | ||
} | ||
|
||
details.sd-dropdown { | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
summary.sd-summary-title::after { | ||
display: none; | ||
right: 0 !important; | ||
} | ||
|
||
summary.sd-summary-title::before { | ||
display: none; | ||
left: 0 !important; | ||
} | ||
|
||
summary.sd-summary-title { | ||
width: 100% !important; | ||
margin-left: 0; | ||
padding: .5em 1em !important; | ||
} | ||
|
||
summary.sd-summary-title svg.sd-octicon { | ||
max-width: none !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.