Skip to content

Commit

Permalink
fix MANIFEST.in file, closes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink committed Sep 15, 2020
1 parent 9021e7a commit 6aed712
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Make sure unit tests succeed
run: |
pip install -r tests/test_requirements.txt
pip install -e .
pip install .
pytest
- name: Build package & publish to PyPi
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
- name: Generate coverage report
run: |
pip install -r tests/test_requirements.txt
pip install -e .
pip install .
pytest --cov=mkdocs_print_site_plugin --cov-report=xml
2 changes: 1 addition & 1 deletion .github/workflows/unittests_codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Generate coverage report
run: |
pip install -r tests/test_requirements.txt
pip install -e .
pip install .
pytest --cov=mkdocs_print_site_plugin --cov-report=xml -vvv
- name: Upload coverage to Codecov
if: "contains(env.USING_COVERAGE, matrix.python-version)"
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mkdocs_print_site_plugin/css/*
mkdocs_print_site_plugin/js/*
include mkdocs_print_site_plugin/css/*.css
include mkdocs_print_site_plugin/js/*.js
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="mkdocs-print-site-plugin",
version="0.5",
version="0.5.1",
description="MkDocs plugin that adds a page to your site combining all pages, allowing your site visitors to *File > Print > Save as PDF* the entire site.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 6aed712

Please sign in to comment.