Skip to content

Commit 81dadda

Browse files
committed
Create 0.4.1 patch release
1 parent 9fc7e67 commit 81dadda

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
os: ["ubuntu-latest"]
3131
python-version: ["3.9", "3.10", "3.11", "3.12"]
3232
include:
33-
- os: macOS-11
33+
- os: macOS-12
3434
python-version: "3.11"
3535
- os: windows-2019
3636
python-version: "3.11"

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
os: [ubuntu-20.04, macOS-11, windows-2019]
24+
os: [ubuntu-20.04, macOS-12, windows-2019]
2525

2626
steps:
2727
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
2323

2424
## [Unreleased]
2525

26+
## [0.4.1] - 2024-09-13
27+
28+
* Updates build requirements to use NumPy 2.0 release
29+
2630
## [0.4.0] - 2024-04-1
2731

2832
* Updates `ml_dtypes` for compatibility with future NumPy 2.0 release.

ml_dtypes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.4.0" # Keep in sync with pyproject.toml:version
15+
__version__ = "0.4.1" # Keep in sync with pyproject.toml:version
1616
__all__ = [
1717
"__version__",
1818
"bfloat16",

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ml_dtypes"
3-
version = "0.4.0" # Keep in sync with ml_dtypes/__init__.py:__version__
3+
version = "0.4.1" # Keep in sync with ml_dtypes/__init__.py:__version__
44
description = ""
55
readme = "README.md"
66
requires-python = ">=3.9"
@@ -48,8 +48,7 @@ pyink-use-majority-quotes = true
4848

4949
[build-system]
5050
requires = [
51-
# TODO(phawkins): update this to 2.0.0 after its release.
52-
"numpy==2.0.0rc1",
51+
"numpy~=2.0",
5352
"setuptools~=68.1.0",
5453
]
5554
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)