-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changelog. * 0.2.0 * Extra line in pyproject.toml suggested by @xhochy. * Date in changelog.
- Loading branch information
1 parent
485c953
commit 4ea14d9
Showing
2 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
Changelog | ||
========= | ||
|
||
Unreleased | ||
---------- | ||
0.2.0 - 2024-06-7 | ||
----------------- | ||
|
||
**New features:** | ||
|
||
- New method :func:`ivmodels.simulate.simulate_guggenberger12` to draw from the data | ||
- New method :func:`~ivmodels.simulate.simulate_guggenberger12` to draw from the data | ||
generating process of Guggenberger (2012). | ||
|
||
- The utility functions :func:`ivmodels.utils.proj` and :func:`ivmodels.utils.oproj` | ||
- The utility functions :func:`~ivmodels.utils.proj` and :func:`~ivmodels.utils.oproj` | ||
now accept multiple args to be projected. Usage of this results in performance | ||
improvements. | ||
improvements. | ||
|
||
**Other changes:** | ||
|
||
- The utility functions :func:`~ivmodels.utils.proj` and :func:`~ivmodels.utils.oproj` | ||
now use the `scipy.linalg(..., lapack_driver="gelsy")`. This results in a speedup. | ||
|
||
- The numerical integration function | ||
:func:`~ivmodels.tests.conditional_likelihood_ratio.conditional_likelihood_ratio_critical_value_function` | ||
has been reparametrized, yielding a speedup. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ requires = ['setuptools', 'setuptools-scm', 'wheel'] | |
name = "ivmodels" | ||
description = "IV Models" | ||
readme = "README.md" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{ name = "Malte Londschien", email = "[email protected]" }, | ||
|
@@ -31,6 +31,9 @@ default_section = 'THIRDPARTY' | |
[tool.setuptools] | ||
py-modules = ["ivmodels"] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["ivmodels.*"] | ||
|
||
[tool.poetry.dependencies] | ||
sphinx = {version = "^3", optional = true} | ||
sphinx-autodoc-typehints ={version = "^1.11.1", optional = true} | ||
|