-
Notifications
You must be signed in to change notification settings - Fork 6
Mkdocs version #19
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
base: main
Are you sure you want to change the base?
Mkdocs version #19
Changes from all commits
b7234fe
92cb57b
9eb430f
8617219
3c673b0
1b091db
3883906
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| .vscode | ||
| .idea | ||
| .idea | ||
| .DS_Store |
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ jobs: | |
| python: ['3.9', '3.10', '3.11'] | ||
|
|
||
| steps: | ||
| - uses: compas-dev/compas-actions.build@v4 | ||
| - uses: compas-dev/compas-actions.build@v5 | ||
| with: | ||
| python: ${{ '{{' }} matrix.python {{ '}}' }} | ||
| invoke_lint: true | ||
|
|
@@ -24,7 +24,7 @@ jobs: | |
| needs: build | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: compas-dev/compas-actions.publish@v3 | ||
| - uses: compas-dev/compas-actions.publish@v3.1.0 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same, maybe just v3 |
||
| with: | ||
| pypi_token: ${{ '{{' }} secrets.PYPI {{ '}}' }} | ||
| github_token: ${{ '{{' }} secrets.GITHUB_TOKEN {{ '}}' }} | ||
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| # ::: {{ cookiecutter.project_slug }} |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| :root > * { | ||
| --md-primary-fg-color: #0092d2; | ||
| --md-primary-fg-color--light: #0092d2; | ||
| --md-primary-fg-color--dark: #0092d2; | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| # Examples |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # {{ cookiecutter.project_name }} | ||
|
|
||
| {{ cookiecutter.project_short_description }} | ||
|
|
||
| ## Installation | ||
|
|
||
| Stable releases can be installed from PyPI. | ||
|
|
||
| ```bash | ||
| pip install {{ cookiecutter.project_slug }} | ||
| ``` | ||
|
|
||
| ## First Steps | ||
|
|
||
| ```python | ||
| import {{ cookiecutter.project_slug }} | ||
| ``` |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # Installation | ||
|
|
||
| ## Stable | ||
|
|
||
| Stable releases are available on PyPI and can be installed with pip. | ||
|
|
||
| ```bash | ||
| pip install {{ cookiecutter.project_slug }} | ||
| ``` | ||
|
|
||
| ## Latest | ||
|
|
||
| The latest version can be installed from local source. | ||
|
|
||
| ```bash | ||
| git clone https://github.com/{{ cookiecutter.github_organization }}/{{ cookiecutter.project_slug }}.git | ||
| cd {{ cookiecutter.project_slug }} | ||
| pip install -e . | ||
| ``` | ||
|
|
||
| ## Development | ||
|
|
||
| To install `{{ cookiecutter.project_slug }}` for development, install from local source with the "dev" requirements. | ||
|
|
||
| ```bash | ||
| git clone https://github.com/{{ cookiecutter.github_organization }}/{{ cookiecutter.project_slug }}.git | ||
| cd {{ cookiecutter.project_slug }} | ||
| pip install -e .[dev] | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we say v5 isn't it gonna pull latest 5.x anyway?