Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add case state python code, docs #8

Merged
merged 28 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5951eb9
create vultron package
ahouseholder Sep 11, 2023
d7af285
add python code
ahouseholder Sep 25, 2023
fc1b4d8
add update docs
ahouseholder Sep 25, 2023
a955c7a
regenerate docs
ahouseholder Sep 25, 2023
85cc68b
revise docstrings
ahouseholder Sep 25, 2023
42a8124
refactor docs
ahouseholder Sep 25, 2023
4e33efc
fix some links
ahouseholder Sep 25, 2023
629fe69
add type hints, docstrings
ahouseholder Sep 25, 2023
57cc285
hide diffstates
ahouseholder Sep 25, 2023
6834c98
roll in unit tests
ahouseholder Sep 25, 2023
3c8de5e
add copyright block
ahouseholder Sep 28, 2023
3aae3fa
clean up imports
ahouseholder Sep 28, 2023
da91246
read version from generated module
ahouseholder Sep 28, 2023
66b534a
update docstrings
ahouseholder Sep 28, 2023
0a17fce
rearrange pages in nav
ahouseholder Sep 28, 2023
b14f41f
latex embedded in docstring needs extra escape
ahouseholder Sep 28, 2023
aca534b
add more meta info
ahouseholder Sep 28, 2023
27cd61b
ignore some nav warnings
ahouseholder Sep 28, 2023
b0726db
you can setup black in toml files?
ahouseholder Sep 28, 2023
0768423
docstrings and hints
ahouseholder Sep 28, 2023
1493697
Merge commit '111fe80c8b6bd81c1a4bd4ea837d1e31043500ad' into mkdocs-p…
ahouseholder Sep 29, 2023
f908c6e
rename cvd_states module to case_states
ahouseholder Sep 29, 2023
95ec303
refactor docs a little
ahouseholder Sep 29, 2023
441536a
black
ahouseholder Sep 29, 2023
7fd435a
black
ahouseholder Sep 29, 2023
27ba448
update black workflow action
ahouseholder Sep 29, 2023
311b814
update black workflow action
ahouseholder Sep 29, 2023
771d914
include links must be relative
ahouseholder Sep 29, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Lint
name: Run Black

on: [push, pull_request]
on: [pull_request]

jobs:
lint:
black_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,6 @@ dmypy.json
.pyre/
/tmp/
/TODO.md

# generated by setuptools_scm
/vultron/_version.py
15 changes: 15 additions & 0 deletions docs/assets/cert_seal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ independent organizations, processes, and policies that can work together to coo

The Vultron Protocol is a collection of ideas, models, code, and work in progress, and is not yet ready for production use.

{% include-markdown "includes/curr_ver.md" %}
{% include-markdown "./includes/curr_ver.md" %}

## How this documentation is organized

Expand Down
Loading