Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-18.04, macos-10.15]
python-version: [3.5, 3.6, 3.8]
python-version: [3.5, 3.6, 3.8, 3.9]
compiler: [gcc, clang]
exclude:
- os: macos-10.15
Expand All @@ -25,9 +25,11 @@ jobs:
- python-version: 3.5
numpy: 1.11.3
- python-version: 3.6
numpy: 1.19
numpy: 1.19.3
- python-version: 3.8
numpy: 1.19
numpy: 1.19.3
- python-version: 3.9
numpy: 1.19.3
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -93,5 +95,5 @@ jobs:
pip install dist/libpy-*.tar.gz
- name: Check that docs can be built
run: |
pip install sphinx sphinx_rtd_theme breathe ipython
pip install wheel sphinx sphinx_rtd_theme breathe ipython
make docs
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Build the docs
run: |
pip install sphinx sphinx_rtd_theme breathe ipython
pip install wheel sphinx sphinx_rtd_theme breathe ipython
make docs

- name: Deploy the docs
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def run(self):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: C++',
'Operating System :: POSIX',
Expand Down