Skip to content

Commit

Permalink
(Issue #94) Fix last bug and inject test failure.
Browse files Browse the repository at this point in the history
The previous bug did cause the GH publication action to fail during the
distribution build phase as expected.  The new bug should cause a failure when
testing the installed distributions.
  • Loading branch information
jared321 committed Sep 18, 2024
1 parent 7089898 commit 3d26ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [
description = "A python package for Bayesian model mixing"
readme = "README.md"
license = {file = "LICENSE"}
rquires-python = ">=3.9"
requires-python = ">=3.9"
# We request that users who want to use non-default bilby samplers (e.g.,
# ptemcee) manually install the related packages first.
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/Taweret/tests/test_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_mixing():

# Check tuning & hyper parameters
assert mix.k == 2.5, "object k is not set."
assert mix.ntree == 30, "object ntree is not set."
assert mix.ntree == 35, "object ntree is not set."
assert mix.overallnu == 5, "object nu is not set."
assert mix.overallsd == 0.01, "object overallsd is not set."
assert mix.overalllambda == 0.01**2, "object overalllambda is not set."
Expand Down

0 comments on commit 3d26ce0

Please sign in to comment.