Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammy2211 committed Jun 7, 2023
1 parent 094d296 commit afb1e15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autoarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@

conf.instance.register(__file__)

__version__ = "2023.3.27.1"
__version__ = "2023.7.7.1"
2 changes: 1 addition & 1 deletion autoarray/config/general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ numba:
structures:
use_dataset_grids: true # If True, dataset objects (e.g. Imaging) have a grid of (y,x) coordinates computed for them.
test:
preloads_check_threshold: 0.1 # If the figure of merit of a fit with and without preloads is greater than this threshold, the check preload test fails and an exception raised for a model-fit.
preloads_check_threshold: 1.0 # If the figure of merit of a fit with and without preloads is greater than this threshold, the check preload test fails and an exception raised for a model-fit.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
with open(join(this_dir, "requirements.txt")) as f:
requirements = f.read().split("\n")

version = environ.get("VERSION", "1.0.dev0")
version = environ.get("VERSION", "2023.7.7.1")
requirements.extend([f"autoconf=={version}"])


Expand Down
2 changes: 1 addition & 1 deletion test_autoarray/config/general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ test:
bypass_figure_of_merit_sanity: false
check_preloads: false
exception_override: false
preloads_check_threshold: 0.1 # If the figure of merit of a fit with and without preloads is greater than this threshold, the check preload test fails and an exception raised for a model-fit.
preloads_check_threshold: 1.0 # If the figure of merit of a fit with and without preloads is greater than this threshold, the check preload test fails and an exception raised for a model-fit.

0 comments on commit afb1e15

Please sign in to comment.