From 9918093cb582165ddc61515e00fad3829349c934 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Tue, 5 Jan 2021 00:08:05 +0100 Subject: [PATCH] Release v0.0.1. (#52) --- .conda/meta.yaml | 18 +++++++++--------- .gitignore | 1 - README.rst | 21 +++++++++++++++++++++ docs/source/changes.rst | 16 ++++++++++++++++ docs/source/index.rst | 8 ++++++++ environment.yml | 14 +++++++------- tox.ini | 8 ++++---- 7 files changed, 65 insertions(+), 21 deletions(-) create mode 100644 docs/source/changes.rst diff --git a/.conda/meta.yaml b/.conda/meta.yaml index fc31eb98..b92c8a10 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -16,25 +16,25 @@ 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 @@ -42,12 +42,12 @@ test: 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 diff --git a/.gitignore b/.gitignore index 2af9ab10..608a2796 100644 --- a/.gitignore +++ b/.gitignore @@ -145,7 +145,6 @@ benchmark/ # Sphinx docs/source/_generated/ - # sid .sid/ src/__init__.py diff --git a/README.rst b/README.rst index 1bd41170..6e16e925 100644 --- a/README.rst +++ b/README.rst @@ -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 + `_. + +- 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 + `_. 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 `_ (No. 99). Institute + of Labor Economics (IZA). diff --git a/docs/source/changes.rst b/docs/source/changes.rst new file mode 100644 index 00000000..1f60e1e8 --- /dev/null +++ b/docs/source/changes.rst @@ -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 `_ and +all releases are available on `Anaconda.org +`_. + + +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 + `_. diff --git a/docs/source/index.rst b/docs/source/index.rst index 7b620bf0..c6656072 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -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 diff --git a/environment.yml b/environment.yml index 9c877ad5..edaf5d1b 100644 --- a/environment.yml +++ b/environment.yml @@ -2,11 +2,10 @@ name: sid channels: - conda-forge - - defaults - - opensourceeconomics + - janosg dependencies: - - python + - python >=3.6,<3.9 - pip - anaconda-client @@ -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 @@ -34,7 +34,7 @@ dependencies: - seaborn - snakeviz - tqdm - - virtualenv=20.0.33 + - virtualenv =20.0.33 - sphinx - sphinx-copybutton diff --git a/tox.ini b/tox.ini index f902d9ef..818bc1ce 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -23,9 +26,6 @@ conda_deps = python-snappy seaborn tqdm -conda_channels = - conda-forge - opensourceeconomics commands = pip install --no-deps -e . pytest {posargs}