Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is managed by 'repo_helper'. Don't edit it directly.
---
name: Windows Tests
name: Windows

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_ci_linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is managed by 'repo_helper'. Don't edit it directly.
---
name: Linux Tests
name: Linux

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_ci_macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is managed by 'repo_helper'. Don't edit it directly.
---
name: macOS Tests
name: macOS

on:
push:
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ Includes tools for calculating mean, median and standard deviation of rows in da
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22Docs+Check%22
:alt: Docs Check Status

.. |actions_linux| image:: https://github.com/domdfcoding/mathematical/workflows/Linux%20Tests/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22Linux+Tests%22
.. |actions_linux| image:: https://github.com/domdfcoding/mathematical/workflows/Linux/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status

.. |actions_windows| image:: https://github.com/domdfcoding/mathematical/workflows/Windows%20Tests/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22Windows+Tests%22
.. |actions_windows| image:: https://github.com/domdfcoding/mathematical/workflows/Windows/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22Windows%22
:alt: Windows Test Status

.. |actions_macos| image:: https://github.com/domdfcoding/mathematical/workflows/macOS%20Tests/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22macOS+Tests%22
.. |actions_macos| image:: https://github.com/domdfcoding/mathematical/workflows/macOS/badge.svg
:target: https://github.com/domdfcoding/mathematical/actions?query=workflow%3A%22macOS%22
:alt: macOS Test Status

.. |requires| image:: https://requires.io/github/domdfcoding/mathematical/requirements.svg?branch=master
Expand Down
6 changes: 3 additions & 3 deletions doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Includes tools for calculating mean, median and standard deviation of rows in da
:alt: Docs Check Status

.. |actions_linux| actions-shield::
:workflow: Linux Tests
:workflow: Linux
:alt: Linux Test Status

.. |actions_windows| actions-shield::
:workflow: Windows Tests
:workflow: Windows
:alt: Windows Test Status

.. |actions_macos| actions-shield::
:workflow: macOS Tests
:workflow: macOS
:alt: macOS Test Status

.. |requires| requires-io-shield::
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
domdf-python-tools>=0.9.0
# TODO: Numpy is broken in Windows 2004 except for 1.19.3
# A fix should be out by end of Jan 2021 🙈
# https://developercommunity.visualstudio.com/content/problem/1207405/fmod-after-an-update-to-windows-2004-is-causing-a.html
domdf-python-tools>=0.9.0
numpy>=1.19.1; platform_system != "Windows"
numpy==1.19.3; platform_system == "Windows"
pandas>=1.0.1
Expand Down