Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The rules for this file:

Changes

* deprecated and buggy CCP4 module was removed (#107, #50)
* gridDataFormats now follows NEP29 (#102)
* removed support for Python 2.7 and Python <3.8 (#102)

Expand Down
1 change: 0 additions & 1 deletion doc/source/gridData/formats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ Format-specific modules
formats/OpenDX
formats/gOpenMol
formats/mrc
formats/CCP4
3 changes: 0 additions & 3 deletions doc/source/gridData/formats/CCP4.rst

This file was deleted.

328 changes: 0 additions & 328 deletions gridData/CCP4.py

This file was deleted.

3 changes: 1 addition & 2 deletions gridData/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@
from . import OpenDX
from . import gOpenMol
from . import mrc
from . import CCP4 # remove in 1.0.0

__all__ = ['Grid', 'OpenDX', 'gOpenMol', 'mrc', 'CCP4']
__all__ = ['Grid', 'OpenDX', 'gOpenMol', 'mrc']

from ._version import get_versions
__version__ = get_versions()['version']
Expand Down
2 changes: 0 additions & 2 deletions gridData/mrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
Reading of MRC/CCP4 volumetric files (`MRC2014 file format`_) using
the mrcfile_ library [Burnley2017]_.

This implementation replaces the :mod:`CCP4` module.

.. _mrcfile: https://mrcfile.readthedocs.io/
.. _`MRC2014 file format`: http://www.ccpem.ac.uk/mrc_format/mrc2014.php

Expand Down
Loading