Skip to content

Commit 006476a

Browse files
authored
Merge pull request #276 from JacksonMaxfield/master
admin/enable-tests-for-windows-and-mac
2 parents 7ef98f7 + e2c6550 commit 006476a

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/ci-osx.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
run: |
3939
conda activate env
4040
export CC=clang
41-
python setup.py build
41+
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
42+
python -m pip install -v -e .
4243
4344
- name: Run tests
4445
shell: "bash -l {0}"

.github/workflows/ci-windows.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
run: |
3939
conda activate env
4040
export CC=clang
41-
python setup.py build
41+
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
42+
python -m pip install -v -e .
4243
4344
- name: Run tests
4445
shell: "bash -l {0}"

docs/release.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
Release notes
22
=============
33

4+
.. _unreleased:
5+
6+
Unreleased
7+
----------
8+
9+
* Update Windows + Mac CI to run all tests.
10+
By :user:`Jackson Maxfield Brown <JacksonMaxfield>`, :issue:`276`.
11+
Help from :user:`Oleg Höfling <hoefling>`, :issue:`273`.
12+
413
.. _release_0.7.3:
514

615
0.7.3
716
-----
817

918
* Add support for Python 3.9 and Update GitHub Actions.
10-
By :user:`Jackson Maxfield <JacksonMaxfield>`, :issue:`270`.
19+
By :user:`Jackson Maxfield Brown <JacksonMaxfield>`, :issue:`270`.
1120

1221
* Remove support for Python 3.5 which is end of life. While the code base might
1322
still be compatible; the source dist and wheel are marked as Python 3.6+ and

0 commit comments

Comments
 (0)