Skip to content

Commit

Permalink
DIALS 3.17.1
Browse files Browse the repository at this point in the history
Bugfixes
--------

- Importing the (deprecated and removed) ``dxtbx.datablock`` module failed to display warning properly.

Misc
----

- `cctbx#672 <https://github.com/cctbx/dxtbx/issues/672>`_
  • Loading branch information
DiamondLightSource-build-server committed Feb 12, 2024
2 parents 286ad1f + 325f0bd commit fd48b09
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 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 = 3.17.0
current_version = 3.17.1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<release>[a-z]+)?(?P<patch>\d+)?
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
DIALS 3.17.1 (2024-02-12)
=========================

Bugfixes
--------

- Importing the (deprecated and removed) ``dxtbx.datablock`` module failed to display warning properly. (`#665 <https://github.com/cctbx/dxtbx/issues/665>`_)


Misc
----

- `#672 <https://github.com/cctbx/dxtbx/issues/672>`_


dxtbx 3.17.0 (2023-11-03)
=========================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Static version number which is updated by bump2version
# Do not change this manually - use 'bump2version <major/minor/patch/release>'
__version_tag__ = "3.17.0"
__version_tag__ = "3.17.1"

setup_kwargs = {
"name": "dxtbx",
Expand Down
2 changes: 1 addition & 1 deletion src/dxtbx/datablock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import warnings

from dxtbx.experiment_list import (
from dxtbx.model.experiment_list import (
BeamComparison,
DetectorComparison,
FormatChecker,
Expand Down
6 changes: 3 additions & 3 deletions src/dxtbx/masking/goniometer_shadow_masking.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ namespace dxtbx { namespace masking {
}
}
if (!valid) {
std::cout << "Invalid polygon geometry (" << failure
<< "): " << boost::geometry::dsv(poly) << std::endl;
std::cout << boost::geometry::dsv(points) << std::endl;
// std::cout << "Invalid polygon geometry (" << failure
// << "): " << boost::geometry::dsv(poly) << std::endl;
// std::cout << boost::geometry::dsv(points) << std::endl;
result.push_back(shadow_points);
continue;
}
Expand Down

0 comments on commit fd48b09

Please sign in to comment.