Skip to content

Commit

Permalink
1.0.10 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samirelanduk committed May 29, 2021
1 parent 6c4098b commit e9d584e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM sphinxdoc/sphinx as builder

WORKDIR /docs
COPY ./ ./
RUN rm -rf docs/build

RUN pip install sphinx_rtd_theme
RUN pip install .

RUN cd docs && make html

FROM nginx:alpine
COPY --from=builder /docs/docs/build/html /usr/share/nginx/html
13 changes: 12 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
atomium
=======

|travis| |coveralls| |pypi| |version| |commit|
|travis| |coveralls| |pypi| |version| |commit| |downloads|

.. |travis| image:: https://api.travis-ci.org/samirelanduk/atomium.svg?branch=master
:target: https://travis-ci.org/samirelanduk/atomium/
Expand All @@ -18,6 +18,9 @@ atomium
.. |commit| image:: https://img.shields.io/github/last-commit/samirelanduk/atomium/master.svg
:target: https://github.com/samirelanduk/atomium/tree/master/

.. |downloads| image:: https://img.shields.io/pypi/dm/atomium.svg
:target: https://pypi.org/project/atomium/


atomium is a molecular modeller and file parser, capable of reading from and
writing to .pdb, .cif and .mmtf files.
Expand Down Expand Up @@ -385,6 +388,14 @@ results.
Changelog
---------

Release 1.10.0
~~~~~~~~~~~~~

`29 May 2021`

* Fixed secondary structure parsing for multi character asym IDs in mmCIF.


Release 1.0.9
~~~~~~~~~~~~~

Expand Down
2 changes: 0 additions & 2 deletions docs/Dockerfile

This file was deleted.

8 changes: 8 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
---------

Release 1.10.0
~~~~~~~~~~~~~

`29 May 2021`

* Fixed secondary structure parsing for multi character asym IDs in mmCIF.


Release 1.0.9
~~~~~~~~~~~~~

Expand Down

0 comments on commit e9d584e

Please sign in to comment.