Skip to content

Commit

Permalink
Merge branch 'toycalc' of https://github.com/scikit-hep/pyhf into toy…
Browse files Browse the repository at this point in the history
…calc
  • Loading branch information
lukasheinrich committed Mar 5, 2020
2 parents 7142f0c + d5b9c98 commit f232b96
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@ jobs:
python -m doctest README.md
python setup.py build_sphinx
touch docs/_build/html/.nojekyll
- name: Check schemas are copied over
run: |
# is a directory
[ -d "docs/_build/html/schemas" ]
# is not a symlink
[ ! -L "docs/_build/html/schemas" ]
# is not empty
[ "$(ls -A docs/_build/html/schemas)" ]
- name: Deploy docs to GitHub Pages
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: crazy-max/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prune *
graft src

include LICENSE

global-exclude __pycache__ *.py[cod]
global-exclude __pycache__ *.py[cod] .*
1 change: 1 addition & 0 deletions docs/_extras/schemas
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def setup(app):
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
#
html_extra_path = []
html_extra_path = ['_extras']

# If not None, a 'Last updated on:' timestamp is inserted at every page
# bottom, using the given strftime format.
Expand Down
1 change: 0 additions & 1 deletion docs/schemas

This file was deleted.

0 comments on commit f232b96

Please sign in to comment.