Skip to content
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

Release 0.4.2 #568

Merged
merged 5 commits into from
Sep 5, 2024
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
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
version: v0.7.3
fail_ci_if_error: false
verbose: true

Expand Down Expand Up @@ -125,6 +126,7 @@ jobs:
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
version: v0.7.3
fail_ci_if_error: false
verbose: true

Expand Down Expand Up @@ -183,5 +185,6 @@ jobs:
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
version: v0.7.3
fail_ci_if_error: false
verbose: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Import the `galois` package in Python.
In [1]: import galois

In [2]: galois.__version__
Out[2]: '0.4.1'
Out[2]: '0.4.2'
```

### Create a [`FieldArray`](https://mhostetter.github.io/galois/latest/api/galois.FieldArray/) subclass
Expand Down
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
"name": "warning",
"title": "Warning",
"classes": ["collapsible"],
"icon": "fontawesome/solid/triangle-exclamation",
"icon": "fontawesome/solid/exclamation",
"override": True,
},
{
Expand Down Expand Up @@ -359,6 +359,13 @@
"icon": "fontawesome/regular/star",
"color": (255, 233, 3), # Gold
},
{
"name": "nomenclature",
"title": "Variable nomenclature",
"classes": ["collapsible"],
"icon": "fontawesome/solid/arrow-down-a-z",
"color": (108, 117, 125), # --sd-color-secondary
},
{
"name": "fast-performance",
"title": "Faster performance",
Expand Down
12 changes: 12 additions & 0 deletions docs/release-notes/v0.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,15 @@ tocdepth: 2
- Semjon Kravtšenko ([@semjon00](https://github.com/semjon00))
- [@MrVeka](https://github.com/MrVeka)
- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))

## v0.4.2

*Released September 5, 2024*

### Changes

- Added support for NumPy 2.1. ([#567](https://github.com/mhostetter/galois/issues/567))

### Contributors

- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ classifiers = [
]
requires-python = ">=3.7"
dependencies = [
"numpy >= 1.21.0, < 2.1", # v1.21.0 is needed for dtype support of ufuncs, see https://numpy.org/devdocs/release/1.21.0-notes.html#ufunc-signature-and-dtype-generalization-and-casting
"numpy >= 1.21.0, < 2.2", # v1.21.0 is needed for dtype support of ufuncs, see https://numpy.org/devdocs/release/1.21.0-notes.html#ufunc-signature-and-dtype-generalization-and-casting
"numba >= 0.55, < 0.61", # v0.55 is needed for support of NumPy 1.21
"typing_extensions >= 4.0.0", # v4.0.0 is needed for use of Self (Python 3.11+) and Literal (Python 3.8+)
]
Expand Down
Loading