Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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: 2 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ sphinx:
fail_on_warning: false
python:
install:
- requirements: requirements_docs.txt
- method: pip
path: .
extra_requirements:
- docs
7 changes: 6 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Pint Changelog
==============

0.25.3 (unreleased)
0.26.0 (unreleased)
-------------------

- Nothing yet.

0.25.3 (2026-03-19)
-----------------

- `GenericPlainRegistry.parse_expression` now correctly returns a dimensionless Quantity when taking a float, int, or NaN (#2259)
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ recursive-include benchmarks *
prune docs/_build
prune docs/_themes/.git
prune pint/.pytest_cache
exclude .editorconfig bors.toml pull_request_template.md requirements_docs.txt version.py
exclude .editorconfig bors.toml pull_request_template.md version.py
global-exclude *.pyc *~ .DS_Store *__pycache__* *.pyo .travis-exclude.yml *.lock
6 changes: 2 additions & 4 deletions docs/dev/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ In a terminal, navigate where you want the code to be downloaded, and type::
$ cd pint
$ python -m virtualenv venv
$ source venv/bin/activate
$ pip install -e '.[test]'
$ pip install -r requirements_docs.txt
$ pip install -e '.[test,docs]'
$ pip install pre-commit # This step and the next are optional but recommended.
$ pre-commit install

Expand All @@ -109,8 +108,7 @@ Then type::

$ conda install pip
$ conda install git
$ pip install -e ".[test]"
$ pip install -r requirements_docs.txt
$ pip install -e ".[test,docs]"
$ pip install pre-commit
$ pre-commit install

Expand Down
8,850 changes: 0 additions & 8,850 deletions pixi.lock

This file was deleted.

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ docs = [
"sciform",
"scipy",
"currencyconverter",
"matplotlib",
"numpy",
"xarray",
"dask[complete]<2025.3.0",
]

[project.urls]
Expand Down Expand Up @@ -109,7 +113,7 @@ ignore = [
"E731", # do not assign a lambda expression, use a def
]

[tool.pixi.project]
[tool.pixi.workspace]
channels = ["https://fast.prefix.dev/conda-forge"]
platforms = ['osx-arm64', 'linux-64', 'win-64']

Expand Down
24 changes: 0 additions & 24 deletions requirements_docs.txt

This file was deleted.

Loading