Skip to content

admin/enable-tests-for-windows-and-mac #276

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Mar 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c21e422
Support Py39 in tests
Jan 23, 2021
1eb187b
Remove old CI configs
Jan 23, 2021
646e7a8
Add or upgrade CI for GH-Actions
Jan 23, 2021
5bb37a1
Update doc references to py39
Jan 23, 2021
b799296
Remove references to py35
Jan 23, 2021
845348a
Fix build docs check on linux ci
Jan 23, 2021
84ba313
Test new README badge targets
Jan 23, 2021
e790169
Point badges at zarr-developers org
Jan 23, 2021
901db02
Update GitHub PR Template
Jan 24, 2021
a3cf9ef
More specificity in ci linux on os versions
Jan 24, 2021
e87fe02
Upgrade wheel CI to use py39
Jan 24, 2021
c7b09dc
Upgrade tox docs test to use py39
Jan 24, 2021
85cf454
Update cibuildwheel to support py39
Jan 24, 2021
54bb7f3
Add back pypi package classifiers
Jan 25, 2021
e33ee5f
Swap wheel builds for ubuntu 18 + 20 for latest
Jan 25, 2021
5e133a0
Linux CI install deps instead of dev deps
Jan 25, 2021
37655c8
Rename OSX steps + change env setup
Jan 25, 2021
0850664
Add Windows CI
Jan 25, 2021
fc4293b
Add newline character to ci-linux
Jan 25, 2021
b9b03af
Mark pickle backwards compat xfail on windows
Jan 25, 2021
58ed3aa
Add link to GH Issue for windows xfail test
Jan 25, 2021
42fbdd5
Merge branch 'master' of github.com:zarr-developers/numcodecs
Mar 16, 2021
5d46fac
Update CI to install editable and run full tests
Mar 16, 2021
b41868f
Remove doc testing from windows + mac
Mar 17, 2021
78f289f
Pin python 3.6 to 3.6.1
Mar 17, 2021
97db7c9
Don't run cov on osx + windows
Mar 17, 2021
39ed403
Add unreleased section to release
Mar 17, 2021
e2c6550
Update PR pointer in docs
Mar 17, 2021
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
3 changes: 2 additions & 1 deletion .github/workflows/ci-osx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
run: |
conda activate env
export CC=clang
python setup.py build
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
python -m pip install -v -e .

- name: Run tests
shell: "bash -l {0}"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
run: |
conda activate env
export CC=clang
python setup.py build
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
python -m pip install -v -e .

- name: Run tests
shell: "bash -l {0}"
Expand Down
11 changes: 10 additions & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
Release notes
=============

.. _unreleased:

Unreleased
----------

* Update Windows + Mac CI to run all tests.
By :user:`Jackson Maxfield Brown <JacksonMaxfield>`, :issue:`276`.
Help from :user:`Oleg Höfling <hoefling>`, :issue:`273`.

.. _release_0.7.3:

0.7.3
-----

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

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