Skip to content

Commit

Permalink
Release 1.2.3 with python 3.13 wheels (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpgillam authored Dec 18, 2024
1 parent 1522b76 commit 4431423
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:

- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python }}

- name: Test
run: uv run --python ${{ matrix.python }} python -m unittest discover tests
run: uv run python -m unittest discover tests

- name: Test with oldest-supported-numpy
run: |
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======

1.2.3 (2024-12-18)
------------------
* Release with Python 3.13 wheels

1.2.2 (2024-08-29)
------------------
* Fix wheel builds
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mt2"
version = "1.2.2"
version = "1.2.3"
description = "Stransverse mass computation as a numpy ufunc."
authors = [
{ name = "Tom Gillam", email = "tpgillam@googlemail.com" },
Expand All @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["mt2"]
dependencies = ["numpy>=1.19.3"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import numpy

__version__ = "1.2.2"
__version__ = "1.2.3"

setup(
ext_modules=[
Expand Down
2 changes: 1 addition & 1 deletion src/mt2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from mt2._mt2 import mt2_lester_ufunc, mt2_tombs_ufunc # pyright: ignore [reportMissingImports]

__version__ = "1.2.2"
__version__ = "1.2.3"

__all__ = ["mt2", "mt2_arxiv", "mt2_ufunc"]

Expand Down

0 comments on commit 4431423

Please sign in to comment.