Skip to content

Commit

Permalink
Bump to v0.3.3 (#95)
Browse files Browse the repository at this point in the history
* Update HISTORY.md

* Update dependency

* Bump version: 0.3.2 → 0.3.3

* Use master branch of docformatter
  • Loading branch information
dachengx authored Dec 27, 2024
1 parent 0508cd6 commit 2999264
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.2
current_version = 0.3.3
files = axidence/__init__.py
commit = True
tag = True
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ jobs:
sudo apt-get install -y graphviz
python -m pip install --upgrade pip
python -m pip install pytest coverage coveralls
pip install git+https://github.com/XENONnT/[email protected]_cevns_unblind --force-reinstall
pip install strax==v1.6.5 --force-reinstall
pip install git+https://github.com/XENONnT/straxen.git@sr1_leftovers --force-reinstall
pip install git+https://github.com/XENONnT/[email protected]_wimp_unblind --force-reinstall
- name: Start MongoDB
uses: supercharge/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
language_version: python3.9

- repo: https://github.com/pycqa/docformatter
rev: v1.7.5
rev: master
hooks:
- id: docformatter

Expand Down
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v0.3.3 / 2024-12-27
-------------------
* Poetry does not understand `requires-python` by @dachengx in https://github.com/XENONnT/axidence/pull/85
* Lock version of strax(en) in the test by @dachengx in https://github.com/XENONnT/axidence/pull/88
* Use SE scores instead of SE density by @dachengx in https://github.com/XENONnT/axidence/pull/87
* Fix bug in z simulation by @dachengx in https://github.com/XENONnT/axidence/pull/90
* Remove unused configs by @dachengx in https://github.com/XENONnT/axidence/pull/93
* Compatible with multi-dimensional field by @dachengx in https://github.com/XENONnT/axidence/pull/94

**Full Changelog**: https://github.com/XENONnT/axidence/compare/v0.3.2...v0.3.3


v0.3.2 / 2024-07-22
-------------------
* Allow saving of isolated cut by @dachengx in https://github.com/XENONnT/axidence/pull/82
Expand Down
2 changes: 1 addition & 1 deletion axidence/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.2"
__version__ = "0.3.3"

from . import dtypes
from .dtypes import *
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "axidence"
version = "0.3.2"
version = "0.3.3"
description = "strax-based data-driven accidental coincidence background simulation and peak-level salting"
readme = "README.md"
license = "BSD-3-Clause"
Expand All @@ -23,8 +23,8 @@ documentation = "https://readthedocs.org/projects/axidence/"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
strax = ">=1.6.3,<=1.6.5"
straxen = { git = "https://github.com/XENONnT/straxen.git@sr1_leftovers"}
GOFevaluation = ">=0.1.4"
straxen = ">=2.2.6,<=2.2.7"
GOFevaluation = ">=0.1.5"

[build-system]
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"]
Expand Down

0 comments on commit 2999264

Please sign in to comment.