diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3a4e878..6787b65 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: - { python: "3.9", os: "ubuntu-latest", session: "tests" } - { python: "3.8", os: "ubuntu-latest", session: "tests" } - { python: "3.10", os: "windows-latest", session: "tests" } - - { python: "3.10", os: "macos-latest", session: "tests" } + # - { python: "3.10", os: "macos-latest", session: "tests" } - { python: "3.10", os: "ubuntu-latest", session: "typeguard" } - { python: "3.10", os: "ubuntu-latest", session: "xdoctest" } - { python: "3.10", os: "ubuntu-latest", session: "docs-build" } diff --git a/README.md b/README.md index 1cd717c..89c9c66 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ Convert a `numpy.NDArray` to various LaTeX forms. ```python >>> import numpy as np ->>> from arraytex import to_matrix +>>> import arraytex as atx >>> A = np.array([[1, 2, 3], [4, 5, 6]]) ->>> print(to_matrix(A)) +>>> print(atx.to_matrix(A)) \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ @@ -38,7 +38,7 @@ Inspired by @josephcslater's [array_to_latex](https://github.com/josephcslater/a ## Features -- Options to use different environment delimiters (`bmatrix` or `pmatrix`) and different +- Support for different environment delimiters (`bmatrix` or `pmatrix`) and different number formatters (`:.2f`, `:.3e`, etc.). ## Requirements