Skip to content

Commit

Permalink
Create 0.4.1 patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
jakevdp committed Sep 13, 2024
1 parent 9fc7e67 commit 81dadda
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: macOS-11
- os: macOS-12
python-version: "3.11"
- os: windows-2019
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-11, windows-2019]
os: [ubuntu-20.04, macOS-12, windows-2019]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

## [Unreleased]

## [0.4.1] - 2024-09-13

* Updates build requirements to use NumPy 2.0 release

## [0.4.0] - 2024-04-1

* Updates `ml_dtypes` for compatibility with future NumPy 2.0 release.
Expand Down
2 changes: 1 addition & 1 deletion ml_dtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.4.0" # Keep in sync with pyproject.toml:version
__version__ = "0.4.1" # Keep in sync with pyproject.toml:version
__all__ = [
"__version__",
"bfloat16",
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ml_dtypes"
version = "0.4.0" # Keep in sync with ml_dtypes/__init__.py:__version__
version = "0.4.1" # Keep in sync with ml_dtypes/__init__.py:__version__
description = ""
readme = "README.md"
requires-python = ">=3.9"
Expand Down Expand Up @@ -48,8 +48,7 @@ pyink-use-majority-quotes = true

[build-system]
requires = [
# TODO(phawkins): update this to 2.0.0 after its release.
"numpy==2.0.0rc1",
"numpy~=2.0",
"setuptools~=68.1.0",
]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit 81dadda

Please sign in to comment.