Skip to content

Commit

Permalink
Squashed 'modules/core/dependency/python-ihm/' changes from 3b2640aaa…
Browse files Browse the repository at this point in the history
…2..56116f58b1

56116f58b1 Fix typo
d2f63c7144 Prepare for 1.4 release
0cf9a10ac0 Add recent changes

git-subtree-dir: modules/core/dependency/python-ihm
git-subtree-split: 56116f58b14904f5b56bff3fe4e10ece7a8f331b
  • Loading branch information
benmwebb committed Aug 30, 2024
1 parent 2f7cc81 commit 77d0126
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 4 deletions.
13 changes: 13 additions & 0 deletions modules/core/dependency/python-ihm/ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
1.4 - 2024-08-30
================
- :class:`ihm.metadata.CIFParser` now extracts metadata from mmCIF starting
models from Model Archive or compliant with the ModelCIF dictionary.
- :meth:`ihm.Citation.from_pubmed_id` now takes an ``is_primary`` argument,
to allow denoting the publication as the most pertinent for the modeling.
- Duplicate references, pseudo sites, and features are now pruned on
output (#148).
- :class:`ihm.restraint.ResidueFeature` now reports an error if it is
given zero residue ranges (#147).
- Bugfix: allow for :class:`ihm.startmodel.Template` ``seq_id_range``
or ``template_seq_id_range`` to be empty.

1.3 - 2024-07-16
================
- The new class :class:`ihm.location.ProteomeXchangeLocation` can be used
Expand Down
2 changes: 1 addition & 1 deletion modules/core/dependency/python-ihm/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ include examples/*
include util/make-mmcif.py
include src/ihm_format.h
include src/ihm_format.i
include src/ihm_format_wrap_1.3.c
include src/ihm_format_wrap_1.4.c
2 changes: 1 addition & 1 deletion modules/core/dependency/python-ihm/ihm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import json
from . import util

__version__ = '1.3'
__version__ = '1.4'


class __UnknownValue(object):
Expand Down
2 changes: 1 addition & 1 deletion modules/core/dependency/python-ihm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys
import os

VERSION = "1.3"
VERSION = "1.4"

copy_args = sys.argv[1:]

Expand Down
6 changes: 6 additions & 0 deletions modules/core/dependency/python-ihm/util/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python-ihm (1.4-1~@CODENAME@) @CODENAME@; urgency=low

* python-ihm 1.4 release

-- Ben Webb <ben@salilab.org> Fri, 30 Aug 2024 15:27:15 -0700

python-ihm (1.3-1~@CODENAME@) @CODENAME@; urgency=low

* python-ihm 1.3 release
Expand Down
5 changes: 4 additions & 1 deletion modules/core/dependency/python-ihm/util/python-ihm.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Name: python3-ihm
License: MIT
Group: Applications/Engineering
Version: 1.3
Version: 1.4
Release: 1%{?dist}
Summary: Package for handling IHM mmCIF and BinaryCIF files
Packager: Ben Webb <ben@salilab.org>
Expand Down Expand Up @@ -36,6 +36,9 @@ sed -i -e "s/install_requires=\['msgpack'\]/#/" setup.py
%defattr(-,root,root)

%changelog
* Fri Aug 30 2024 Ben Webb <ben@salilab.org> 1.4-1
- Update to latest upstream.

* Tue Jul 16 2024 Ben Webb <ben@salilab.org> 1.3-1
- Update to latest upstream.

Expand Down

0 comments on commit 77d0126

Please sign in to comment.