Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v1.7.1 #277

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
fetch-depth: '0'

- name: Build wheels
uses: pypa/cibuildwheel@v2.8.1
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ARCHS: ${{ matrix.cfg.arch }}
with:
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@ Changelog
=========


Version 1.7.1
-------------
*October 14, 2023*

**New features**

* added wheels for Python v3.11 and v3.12 ([#277](https://github.com/GeoStat-Framework/PyKrige/pull/277))

**Changes**

* dropped Python 3.7 support ([#277](https://github.com/GeoStat-Framework/PyKrige/pull/277))

**Bug fixes**

* fixed print statement in uk3d ([#272](https://github.com/GeoStat-Framework/PyKrige/issues/272))
* fixed exact_values behavior in C backend ([#256](https://github.com/GeoStat-Framework/PyKrige/pull/256))


Version 1.7.0
-------------
*August 18, 2022*
Expand Down
1 change: 0 additions & 1 deletion benchmarks/kriging_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def make_benchark(n_train, n_test, n_dim=2):
# All the following tests are performed with the linear variogram model
for backend in BACKENDS:
for n_closest_points in N_MOVING_WINDOW:

if backend == "vectorized" and n_closest_points is not None:
continue # this is not supported

Expand Down
Loading
Loading