Skip to content

Commit 2c93efa

Browse files
Etienne PotThe dataclass_array Authors
authored andcommitted
Release 1.4.2, drop 3.8 support
PiperOrigin-RevId: 544297662
1 parent ef46d2f commit 2c93efa

26 files changed

Lines changed: 31 additions & 26 deletions

.github/workflows/pytest_and_autopublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# Install deps
1919
- uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.8
21+
python-version: 3.9
2222
- run: pip --version
2323
# As changes can be pushed to both etils and visu3d, we install etils from `main` branch
2424
# If modifying this, also modify `pyproject.toml`

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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+
## [1.4.2] - 2023-06-29
27+
28+
* Now require Python 3.9 (drop 3.8 support)
29+
2630
## [1.4.1] - 2023-03-20
2731

2832
* Add `torch==2.0.0` support
@@ -65,7 +69,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
6569

6670
* Initial release
6771

68-
[Unreleased]: https://github.com/google-research/dataclass_array/compare/v1.4.1...HEAD
72+
[Unreleased]: https://github.com/google-research/dataclass_array/compare/v1.4.2...HEAD
73+
[1.4.1]: https://github.com/google-research/dataclass_array/compare/v1.4.1...v1.4.2
6974
[1.4.1]: https://github.com/google-research/dataclass_array/compare/v1.4.0...v1.4.1
7075
[1.4.0]: https://github.com/google-research/dataclass_array/compare/v1.3.0...v1.4.0
7176
[1.3.0]: https://github.com/google-research/dataclass_array/compare/v1.2.1...v1.3.0

dataclass_array/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/array_dataclass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/array_dataclass_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/field_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/import_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

dataclass_array/shape_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 The dataclass_array Authors.
1+
# Copyright 2023 The dataclass_array Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)