1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
=======
History
=======
2.4 (2022-03-07)
^^^^^^^^^^^^^^^^
* dials_data no longer uses ``py.path`` internally.
* dials_data now includes type checking with mypy.
* We started using the ``requests`` library for faster downloads.
* Downloads now happen in parallel.
2.3 (2022-01-11)
^^^^^^^^^^^^^^^^
* Drop Python 3.6 compatibility
* Dataset `SSX_CuNiR_processed` has been renamed to `cunir_serial_processed` for consistency
with `cunir_serial`
2.2 (2021-06-18)
^^^^^^^^^^^^^^^^
* Deprecate the use of ``py.path`` as test fixture return type.
You can either silence the warning by specifying ``dials_data("dataset", pathlib=False)``
or move to the new ``pathlib.Path`` return objects by setting ``pathlib=True``.
This deprecation is planned to be in place for a considerable amount of time.
In the next major release (3.0) the default return type will become ``pathlib.Path``,
with ``py.path`` still available if ``pathlib=False`` is specified. At this point
the ``pathlib=`` argument will be deprecated.
In the following minor release (3.1) all support for ``py.path`` will be dropped.
2.1 (2020-06-11)
^^^^^^^^^^^^^^^^
* Drops Python 2.7 compatibility
* Uses importlib.resources to access resource files (requires Python 3.9 or installed package importlib_resources)
2.0 (2019-04-15)
^^^^^^^^^^^^^^^^
* Convert dials_data to a pytest plugin
1.0 (2019-02-16)
^^^^^^^^^^^^^^^^
* Add functions for forward-compatibility
* Enable new release process including automatic deployment of updates
0.6 (2019-02-15)
^^^^^^^^^^^^^^^^
* Added datasets blend_tutorial, thaumatin_i04
0.5 (2019-01-24)
^^^^^^^^^^^^^^^^
* Added documentation
* Added datasets fumarase, vmxi_thaumatin
0.4 (2019-01-11)
^^^^^^^^^^^^^^^^
* Beta release
* Added datasets insulin, pychef
* Automated generation of hashinfo files via Travis
0.3 (2019-01-09)
^^^^^^^^^^^^^^^^
* Dataset download mechanism
* Added dataset x4wide
0.2 (2019-01-08)
^^^^^^^^^^^^^^^^
* Alpha release
* Basic command line interface
* pytest fixture
0.1 (2018-11-02)
^^^^^^^^^^^^^^^^
* First automatic deployment and release on PyPI
|