Skip to content

Commit

Permalink
Windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
moggers87 committed Oct 28, 2020
1 parent 31c33d7 commit 2ee77f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pandoc on Windows
run: choco install pandoc
if: matrix.os == 'windows-latest'
- name: Install pandoc on Mac
run: brew install pandoc
if: matrix.os == 'macos-latest'
Expand Down
9 changes: 0 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,6 @@ feature requests, new features, or documentation. Also, feel free to open issues
for support requests too - these are very helpful in showing me where
documentation is required or needs improving.

There are however some items I won't consider for inclusion:

- Functionality to upload the static site once generated. This is and shall
remain out of scope for this project.
- Windows support. I've tried maintaining packages before that have Windows
support. I usually end up breaking it as I have no way to test out my changes
on a regular basis.
- Python 2 support.

Code Of Conduct
---------------

Expand Down

0 comments on commit 2ee77f8

Please sign in to comment.