Skip to content

Commit 6aed712

Browse files
committed
fix MANIFEST.in file, closes #12
1 parent 9021e7a commit 6aed712

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Make sure unit tests succeed
2121
run: |
2222
pip install -r tests/test_requirements.txt
23-
pip install -e .
23+
pip install .
2424
pytest
2525
- name: Build package & publish to PyPi
2626
env:

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
- name: Generate coverage report
2222
run: |
2323
pip install -r tests/test_requirements.txt
24-
pip install -e .
24+
pip install .
2525
pytest --cov=mkdocs_print_site_plugin --cov-report=xml

.github/workflows/unittests_codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Generate coverage report
3232
run: |
3333
pip install -r tests/test_requirements.txt
34-
pip install -e .
34+
pip install .
3535
pytest --cov=mkdocs_print_site_plugin --cov-report=xml -vvv
3636
- name: Upload coverage to Codecov
3737
if: "contains(env.USING_COVERAGE, matrix.python-version)"

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mkdocs_print_site_plugin/css/*
2-
mkdocs_print_site_plugin/js/*
1+
include mkdocs_print_site_plugin/css/*.css
2+
include mkdocs_print_site_plugin/js/*.js

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="mkdocs-print-site-plugin",
12-
version="0.5",
12+
version="0.5.1",
1313
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.",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)