mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
f0dfabff38
Now the tail have a fixed size. It actually makes everything simpler. I took order_min = -1 and order_max = 8. This makes the tails compatible with the previous implementation. However we might want to change this to something like -10, 10 so that they are self-contained. This commit should also fix issue #11.
44 lines
1.2 KiB
ReStructuredText
44 lines
1.2 KiB
ReStructuredText
|
|
.. _changelog:
|
|
|
|
Changelog
|
|
=========
|
|
|
|
This document describes the main changes in TRIQS.
|
|
|
|
master (latest commit on github)
|
|
--------------------------------
|
|
|
|
* The tails now have fixed size avoid mpi problems
|
|
|
|
version 1.0.0
|
|
-------------
|
|
|
|
There have been changes from versions 0.x to 1.0.0 that will most likely have
|
|
consequences for your scripts and archives.
|
|
|
|
Python classes
|
|
~~~~~~~~~~~~~~
|
|
|
|
The number of python classes in the old 0.x releases was increasing with no
|
|
clear naming convention. In TRIQS 1.0 we have unified the naming of the classes
|
|
following the `PEP naming conventions
|
|
<http://www.python.org/dev/peps/pep-0008/#naming-conventions>`_:
|
|
|
|
* Package and module names: lowercase with underscores
|
|
* Class names: CapWords
|
|
* Function names: lowercase with underscores
|
|
* Function and method arguments: lowercase with underscores
|
|
|
|
Archives
|
|
~~~~~~~~
|
|
|
|
We provide :download:`an update script <scripts/update_archive.py>` which should
|
|
help you upgrade your archive. The usage is very simple::
|
|
|
|
$ python update_archive.py old_archive new_archive
|
|
|
|
where ``old_archive`` is your old archive to be upgraded and ``new_archive`` is
|
|
the name of the new archive. If you encounter problems please post an
|
|
issue with a copy of your archive.
|