Skip to content

Commit

Permalink
Release v0.5.0 (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianZimpelmann authored Apr 1, 2022
1 parent 14611e2 commit 36f7693
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ requirements:
- setuptools

run:
- python >=3.6
- python >=3.8
- bokeh
- networkx
- pandas
- pydot
- pygments
- pytest
- pyyaml
- numpy_groupies
- ipython

test:
requires:
Expand Down
13 changes: 8 additions & 5 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ This is a record of all past ``gettsim`` releases and what went into them in rev
chronological order. We follow `semantic versioning <https://semver.org/>`_ and all
releases are available on `Anaconda.org <https://anaconda.org/gettsim/gettsim>`_.

0.5.0 —
0.5.1 —
------------------


0.5.0 — 01.04.2022
------------------

* :gh:`327` add behinderten_pauschbetrag for 1975-1986 (:ghuser:`lillyfischer`).
Expand Down Expand Up @@ -43,9 +47,8 @@ releases are available on `Anaconda.org <https://anaconda.org/gettsim/gettsim>`_
* :gh:`355` Major renaming based on GEP 01, e.g.: correct use of ``_m``-suffix;
``alleinerziehend`` becomes ``alleinerz``; rename `ges_rentenv.yaml` to
`ges_rente.yaml` (:ghuser:`hmgaudecker`, :ghuser:`ChristianZimpelmann`)
* :gh:`356` Define functions on scalars and have them vectorised by numpy or jax.
Implement aggregation functions on group levels. (:ghuser:`LauraGergeleit`,
:ghuser:`ChristianZimpelmann`)
* :gh:`356` Define functions on scalars and have them vectorised. Implement aggregation
functions on group levels. (:ghuser:`LauraGergeleit`, :ghuser:`ChristianZimpelmann`)

0.4.2 — 2022-01-25
--------------------
Expand Down Expand Up @@ -200,7 +203,7 @@ releases are available on `Anaconda.org <https://anaconda.org/gettsim/gettsim>`_
0.2.0 — 2019-11-06
--------------------

This will be the initial release of ``gettsim``.
Initial release of ``gettsim``.

* Set up as a conda-installable package (:ghuser:`tobiasraabe`)
* Migration of the parameter database from xls to yaml (:ghuser:`mjbloemer`,
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = "GETTSIM"
copyright = f"2019-{dt.datetime.now().year}, GETTSIM team" # noqa: A001
author = "GETTSIM team"
release = "0.4.1"
release = "0.5.0"
version = ".".join(release.split(".")[:2])

# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 7 additions & 1 deletion docs/gettsim_developer/how-to-contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ To contribute to the project, adhere to the following process.
Prerequisites
-------------

* The process starts differently for regular contributors and newcomers. As a
* Make sure you have the following programs installed and that these can be found on your path:

* A Python distribution (we recommend using: `Miniconda <https://docs.conda.io/en/latest/miniconda.html>`_ or Anaconda)
* `Git <https://git-scm.com/downloads>`_
* A modern text editor (e.g. `VS Code <https://code.visualstudio.com/>`_)

* Cloning the repository works differently for regular contributors and newcomers. As a
contributor you might have been granted privileges to push to the GETTSIM repository.
Thus, you can clone the repository directly using

Expand Down
2 changes: 1 addition & 1 deletion gettsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from gettsim.policy_environment import set_up_policy_environment # noqa: F401
from gettsim.visualization import plot_dag # noqa: F401

__version__ = "0.4.1"
__version__ = "0.5.0"

COUNTER_TEST_EXECUTIONS = itertools.count()

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.1
current_version = 0.5.0

[bumpversion:file:setup.py]

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@

setup(
name="gettsim",
version="0.4.1",
version="0.5.0",
description=DESCRIPTION,
long_description=DESCRIPTION + "\n\n" + README,
long_description_content_type="text/x-rst",
author="Hans-Martin von Gaudecker",
author_email="[email protected]",
python_requires=">=3.6",
python_requires=">=3.8",
url="https://gettsim.readthedocs.io",
project_urls=PROJECT_URLS,
packages=find_packages(),
Expand All @@ -35,8 +35,6 @@
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
Expand All @@ -46,7 +44,7 @@
"parameters/*.yaml",
"pre_processing/exogene_renten_daten/*.yaml",
"tests/test_data/*.csv",
"tests/test_data/*.ods",
"tests/test_parameters/*.yaml",
"synthetic_data/*.yaml",
]
},
Expand Down

0 comments on commit 36f7693

Please sign in to comment.