-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1577 from brichet/set_up_jupyter_releaser
Set up jupyter releaser
- Loading branch information
Showing
23 changed files
with
1,256 additions
and
1,068 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Check Release | ||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["*"] | ||
|
||
jobs: | ||
check_release: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
group: [check_release, link_check] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Base Setup | ||
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | ||
- name: Install Dependencies | ||
run: | | ||
pip install -e . | ||
- name: Check Release | ||
if: ${{ matrix.group == 'check_release' }} | ||
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run Link Check | ||
if: ${{ matrix.group == 'link_check' }} | ||
uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1 | ||
- name: Upload Distributions | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: nbgrader-jupyter-releaser-dist-${{ github.run_number }} | ||
path: .jupyter_releaser_checkout/dist |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,44 @@ | ||
include *.md | ||
include *.json | ||
include *.txt | ||
|
||
include .coveragerc | ||
include .bowerrc | ||
include mypy.ini | ||
include pytest.ini | ||
include codecov.yml | ||
include readthedocs.yaml | ||
include tasks.py | ||
|
||
#nbgrader format files | ||
include nbgrader/nbgraderformat/*.json | ||
|
||
# nbextension files | ||
recursive-include nbgrader/nbextensions * | ||
|
||
# doc files | ||
recursive-include nbgrader/docs * | ||
prune nbgrader/docs/build | ||
|
||
# static files and templates | ||
recursive-include nbgrader/server_extensions/formgrader/static * | ||
recursive-include nbgrader/server_extensions/formgrader/templates * | ||
|
||
# alembic files | ||
include nbgrader/alembic.ini | ||
recursive-include nbgrader/alembic * | ||
|
||
# tests files | ||
include nbgrader/tests/apps/files/* | ||
include nbgrader/tests/preprocessors/files/* | ||
include nbgrader/tests/nbextensions/files/* | ||
|
||
# global exclusion | ||
global-exclude *.pyc | ||
global-exclude .ipynb_checkpoints | ||
global-exclude __pycache__ | ||
|
||
# directories to prune | ||
prune demos | ||
prune tools | ||
prune paper |
This file was deleted.
Oops, something went wrong.
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,2 +1,2 @@ | ||
version_info = (0, 8, 0, 'dev') | ||
__version__ = '.'.join(map(str, version_info)) | ||
version_info = (0, 8, 0, "dev") | ||
__version__ = '.'.join(map(str, version_info[:3])) + (("." + version_info[3]) if version_info[3] else "") |
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 @@ | ||
changelog | ||
========= | ||
|
||
```{include} ../../../CHANGELOG.md | ||
``` |
Oops, something went wrong.