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 freud 3.2.0 #1310

Merged
merged 6 commits into from
Feb 10, 2025
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ body:
attributes:
label: freud Version
description: What version of freud are you using?
placeholder: 3.1.0
placeholder: 3.2.0
validations:
required: true
- type: input
Expand Down
1 change: 1 addition & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ submodules:
recursive: true
sphinx:
configuration: doc/source/conf.py
fail_on_warning: true
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog] and this project adheres to
[Keep a ChangeLog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html

## 3.2.0 -- not yet released
## 3.2.0 -- 2025-02-10

### Added
* Support Python 3.13.
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
# built documents.
#
# version and release are set the same for this package.
version = "3.1.0"
release = "3.1.0"
version = "3.2.0"
release = "3.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 2 additions & 0 deletions doc/source/gettingstarted/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ The examples below go into greater detail about specific applications of **freud
examples/examples/Visualization with fresnel
examples/examples/Visualization with plato
examples/examples/Visualizing 3D Voronoi and Voxelization
examples/examples/Identifying Local Environments in a Complex Crystal
examples/examples/Smectic


Benchmarks
Expand Down
2 changes: 1 addition & 1 deletion freud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# automatic selection runs, the user cannot change it.
set_num_threads(0)

__version__ = "3.1.0"
__version__ = "3.2.0"

__all__ = [
"AABBQuery",
Expand Down
1 change: 0 additions & 1 deletion freud/util/export-ManagedArray.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ void export_ManagedArray(nanobind::module_& module)
{ // python wrapper classes for ManagedArray
export_ManagedArray<float>(module, "ManagedArray_float");
export_ManagedArray<double>(module, "ManagedArray_double");
export_ManagedArray<std::complex<float>>(module, "ManagedArray_complexfloat");
export_ManagedArray<unsigned int>(module, "ManagedArray_unsignedint");
export_ManagedArray<vec3<float>>(module, "ManagedArrayVec3_float");
export_ManagedArray<std::complex<float>>(module, "ManagedArray_complexfloat");
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "freud-analysis"
version = "3.1.0"
version = "3.2.0"
requires-python = ">=3.9"
description = "Powerful, efficient trajectory analysis in scientific Python."
readme = "README.rst"
Expand Down
24 changes: 1 addition & 23 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.1.0
current_version = 3.2.0
commit = False
tag = False
message = Bump up to version {new_version}.
Expand All @@ -12,27 +12,5 @@ message = Bump up to version {new_version}.

[bumpversion:file:.github/ISSUE_TEMPLATE/bug_report.yml]

[flake8]
max-line-length = 88
filename = *.py,*.pyx,*.pxi,*.pxd
force-check = True
exclude = .eggs,*.egg,build,extern,doc/source/gettingstarted/examples
select = E,F,W
ignore = E203,E225,E226,E227,E402,E741,E999,W503,W504
per-file-ignores =
freud/__init__.py: F401
freud/*.pxd: E402

[tool:pytest]
norecursedirs = extern

[coverage:run]
branch = True
source = freud
plugins = Cython.Coverage

[coverage:report]
ignore_errors = True

[coverage:html]
directory = coverage_html_report