Skip to content

Commit

Permalink
Release v0.0.1. (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasraabe committed Jan 4, 2021
1 parent 440669e commit 9918093
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 21 deletions.
18 changes: 9 additions & 9 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,38 @@ build:
requirements:
build:
- python
- pip
- setuptools
host:
- python >=3.6

run:
- python >=3.6
- python >=3.6,<3.9
- setuptools
- bokeh
- dask
- fastparquet
- fastparquet <0.5
- numba >=0.48
- numpy
- pandas >=1
- pytest
- pytest-regressions
- python-snappy
- seaborn
- tqdm

test:
imports:
- sid
requires:
- pytest
- pytest-regressions
- pytest-xdist
source_files:
- tox.ini
- tests
imports:
- sid
commands:
- pytest -m "not optional"
- pytest

about:
home: https://github.com/covid-19-impact-lab/sid
license: MIT
summary: Simulate the spread of COVID-19 with different policies.
doc_url: https://sid-dev.readthedocs.io/
dev_url: https://github.com/covid-19-impact-lab/sid
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ benchmark/
# Sphinx
docs/source/_generated/


# sid
.sid/
src/__init__.py
21 changes: 21 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,24 @@ sid will soon become available as a conda package and will be installed with
For now, clone the repository and install the package with pip or conda.

.. end-installation
Publications
------------

sid has been featured in some publications which are listed here:

- Gabler, J., Raabe, T., & Röhrl, K. (2020). `People Meet People: A Microlevel Approach
to Predicting the Effect of Policies on the Spread of COVID-19
<http://ftp.iza.org/dp13899.pdf>`_.

- Dorn, F., Gabler, J., von Gaudecker, H. M., Peichl, A., Raabe, T., & Röhrl, K. (2020).
`Wenn Menschen (keine) Menschen treffen: Simulation der Auswirkungen von
Politikmaßnahmen zur Eindämmung der zweiten Covid-19-Welle
<https://www.ifo.de/DocDL/sd-2020-digital-15-dorn-etal-politikmassnahmen-covid-19-
zweite-welle.pdf>`_. ifo Schnelldienst Digital, 1(15).

- Gabler, J., Raabe, T., Röhrl, K., & Gaudecker, H. M. V. (2020). `Die Bedeutung
individuellen Verhaltens über den Jahreswechsel für die Weiterentwicklung der
Covid-19-Pandemie in Deutschland <http://ftp.iza.org/sp99.pdf>`_ (No. 99). Institute
of Labor Economics (IZA).
16 changes: 16 additions & 0 deletions docs/source/changes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Changes
=======

This is a record of all past sid releases and what went into them in reverse
chronological order. Releases follow `semantic versioning <https://semver.org/>`_ and
all releases are available on `Anaconda.org
<https://anaconda.org/covid-19-impact-lab/sid>`_.


0.0.1 - 2020-01-05
------------------

- The PRs ranging from :gh:`1` to :gh:`64` form the first release of sid. It is also the
basis of the report `Die Bedeutung individuellen Verhaltens über den Jahreswechsel für
die Weiterentwicklung der Covid-19-Pandemie in Deutschland
<http://ftp.iza.org/sp99.pdf>`_.
8 changes: 8 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,11 @@ publications/ dp/13899>`_ or in the four following chapters of the documentation
how_to_guides/index
explanations/index
reference_guides/index


Here are some additional resources.

.. toctree::
:maxdepth: 1

changes
14 changes: 7 additions & 7 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: sid

channels:
- conda-forge
- defaults
- opensourceeconomics
- janosg

dependencies:
- python
- python >=3.6,<3.9
- pip

- anaconda-client
Expand All @@ -16,12 +15,13 @@ dependencies:
- black
- bokeh
- dask
- fastparquet
- estimagic
- fastparquet <0.5
- jupyterlab
- nbsphinx
- numba>=0.48
- numba >=0.48
- numpy
- pandas>=1
- pandas >=1
- panel
- pdbpp
- pre-commit
Expand All @@ -34,7 +34,7 @@ dependencies:
- seaborn
- snakeviz
- tqdm
- virtualenv=20.0.33
- virtualenv =20.0.33

- sphinx
- sphinx-copybutton
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ basepython = python
[testenv:pytest]
setenv =
CONDA_DLL_SEARCH_MODIFICATION_ENABLE = 1
conda_channels =
conda-forge
janosg
conda_deps =
bokeh
dask
fastparquet
fastparquet <0.5
numba >=0.48
numpy
pandas >=1
Expand All @@ -23,9 +26,6 @@ conda_deps =
python-snappy
seaborn
tqdm
conda_channels =
conda-forge
opensourceeconomics
commands =
pip install --no-deps -e .
pytest {posargs}
Expand Down

0 comments on commit 9918093

Please sign in to comment.