Skip to content

Commit ec99cb2

Browse files
Merge pull request #368 from mcveanlab/release-0.1.2
Release 0.1.1
2 parents 32fbfc6 + 11fa765 commit ec99cb2

6 files changed

Lines changed: 62 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
--------------------
2+
[0.1.1] - 2020-01-02
3+
--------------------
4+
5+
Bugfix release. Fixes some distribution issues and temporarily removes the
6+
PonPyg species.
7+
8+
**Bug fixes**:
9+
10+
- Pin the msprime and attrs packages to resolve some distribution problems
11+
(:issue:`366`; :user:`jgallowa07` and :user:`gtsambos`).
12+
13+
**New features**:
14+
15+
- Provide citations for the genome assembly (:issue:`359`, :pr:`360`;
16+
:user:`andrewkern` and :user:`grahamgower`).
17+
18+
**Breaking changes**:
19+
20+
- Temporarily remove the PonPyg species from the catalog to provide time
21+
to fix issues with genomes and multi-species models (:issue:`365`).
22+
123
--------------------
224
[0.1.0] - 2019-12-18
325
--------------------

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11

2-
Standard models for population genetics simulations in msprime.
2+
**Standard library of population genetic simulations**
3+
4+
Stdpopsim is a community-maintained standard library of population genetic models.
5+
Please see the `documentation <https://stdpopsim.readthedocs.org/en/stable/>`_
6+
for details.
7+
8+
Stdpopsim is highly portable, and provides a number of
9+
`installation options <https://stdpopsim.readthedocs.org/en/stable/installation.html>`_.

docs/conf.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = ''
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.1.0'
31+
release = '0.1.1'
3232

3333

3434
# -- General configuration ---------------------------------------------------
@@ -49,7 +49,8 @@
4949
'sphinx.ext.viewcode',
5050
'speciescatalog',
5151
'sphinxarg.ext',
52-
'sphinxcontrib.programoutput'
52+
'sphinxcontrib.programoutput',
53+
'sphinx_issues',
5354
]
5455

5556
# Add any paths that contain templates here, relative to this directory.
@@ -199,3 +200,6 @@
199200

200201
# If true, `todo` and `todoList` produce output, else they produce nothing.
201202
todo_include_todos = True
203+
204+
# Github repo
205+
issues_github_path = "popsim-consortium/stdpopsim"

docs/installation.rst

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,30 @@ Stdpopsim requires Python 3.5 or later.
2727
Conda
2828
*****
2929

30-
.. todo:: The conda package for stdpopsim is currently under development and will
31-
be available shortly. Please use pip for now.
30+
Pre-built binary packages for ``stdpopsim`` are available through
31+
`conda <https://conda.io/docs/>`_, and built using `conda-forge <https://conda-forge.org/>`_.
32+
Packages for recent version of Python are available for Linux, OSX and Windows. Install
33+
using::
34+
35+
$ conda install -c conda-forge stdpopsim
36+
37+
38+
+++++++++++
39+
Quick Start
40+
+++++++++++
41+
42+
1. Install ``conda`` using `miniconda <https://conda.io/miniconda.html>`_.
43+
Make sure you follow the instructions to fully activate your ``conda``
44+
installation!
45+
2. Set up the `conda-forge channel <https://conda-forge.org/>`_ using
46+
``conda config --add channels conda-forge``.
47+
3. Install stdpopsim: ``conda install stdpopsim``.
48+
4. Try it out: ``stdpopsim --version``.
49+
50+
51+
There are several different ways to obtain ``conda``. Please see the
52+
`anaconda installation documentation <https://docs.anaconda.com/anaconda/install/>`_
53+
for full details.
3254

3355

3456
.. _sec_installation_pip:

requirements/development.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ nose
55
setuptools_scm
66
sphinx
77
sphinx-argparse
8+
sphinx-issues
89
sphinx_rtd_theme
910
sphinxcontrib-programoutput
1011
msprime

requirements/rtd-conda-environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ dependencies:
99
- appdirs
1010
- msprime
1111
- sphinx-argparse
12+
- sphinx-issues
1213
- sphinxcontrib-programoutput
1314
- humanize

0 commit comments

Comments
 (0)