Skip to content

Commit

Permalink
Merge pull request #252 from GeoStat-Framework/prepare_v1.7
Browse files Browse the repository at this point in the history
Prepare v1.7
  • Loading branch information
MuellerSeb authored Aug 18, 2022
2 parents 7494ca1 + 199966b commit 4b2ce01
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@ Changelog
=========


Version 1.7.0
-------------
*August 18, 2022*

**New features**

* added support for GSTools latlon models ([#245](https://github.com/GeoStat-Framework/PyKrige/pull/245))

**Changes**

* drop Python 3.6 support (setuptools>60 needs py>3.7) ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242))
* move `setup.cfg` content to `pyproject.toml` ([PEP 621](https://peps.python.org/pep-0621/)) ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242))
* move to `src/` based package structure (better for testing, building and structure) ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242))
* build wheels for apple silicon ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242))
* apply isort and add check to CI ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242))
* fix documentation ([#242](https://github.com/GeoStat-Framework/PyKrige/pull/242), [#252](https://github.com/GeoStat-Framework/PyKrige/pull/252))

**Bug fixes**

* fix AttributeError: 'UniversalKriging' object has no attribute 'external_Z_array' ([#247](https://github.com/GeoStat-Framework/PyKrige/pull/247))
* remove deprecated scipy (v1.9) method pinv2 ([#237](https://github.com/GeoStat-Framework/PyKrige/pull/237))
* correcting partial sill in C backend ([#226](https://github.com/GeoStat-Framework/PyKrige/pull/226))


Version 1.6.1
-------------
*September 02, 2021*
Expand Down
13 changes: 13 additions & 0 deletions docs/source/_templates/autosummary/class.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}
:members:
:undoc-members:
:inherited-members:
:show-inheritance:

.. raw:: latex

\clearpage
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@ requires-python = ">=3.7"
name = "PyKrige"
description = "Kriging Toolkit for Python."
authors = [
{name = "Benjamin S. Murphy"},
{name = "Sebastian Müller", email = "[email protected]"},
{name = "Benjamin S. Murphy, Sebastian Müller", email = "[email protected]"},
]
maintainers = [
{name = "Sebastian Müller", email = "[email protected]"},
{name = "Roman Yurchak"},
{name = "Sebastian Müller, Roman Yurchak", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
license = {text = "BSD-3-Clause"}
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -40,6 +38,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Mathematics",
Expand All @@ -63,7 +62,6 @@ doc = [
"sphinx>=4",
"sphinx-gallery>=0.8",
"sphinx-rtd-theme>=1",
"sphinxcontrib-napoleon",
]
plot = ["matplotlib>=3,<4"]
sklearn = ["scikit-learn>=0.19"]
Expand All @@ -81,6 +79,9 @@ Homepage = "https://github.com/GeoStat-Framework/PyKrige"
Source = "https://github.com/GeoStat-Framework/PyKrige"
Tracker = "https://github.com/GeoStat-Framework/PyKrige/issues"

[tool.setuptools]
license-files = ["LICENSE"]

[tool.setuptools_scm]
write_to = "src/pykrige/_version.py"
write_to_template = "__version__ = '{version}'"
Expand Down

0 comments on commit 4b2ce01

Please sign in to comment.