Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
daa1d3d
Add ClassificationKriging
mralbu Aug 30, 2020
b958501
Merge branch 'master' of https://github.com/GeoStat-Framework/PyKrige…
mralbu Sep 12, 2020
5dd5df1
Add ClassificationKriging
mralbu Sep 12, 2020
ec671d0
CI: move to github actions (#175)
MuellerSeb Dec 3, 2020
cbc52b3
Fix sample error in 02_kriging3D.py
Rhilip Mar 31, 2021
f909f41
Merge pull request #165 from mralbu/classification-kriging
MuellerSeb Apr 1, 2021
5e37940
Merge pull request #182 from Rhilip/patch-1
MuellerSeb Apr 1, 2021
a0c212c
CI: coveralls 3.0 fix
MuellerSeb Apr 3, 2021
f7a0d72
Benchmarks: blackened
MuellerSeb Apr 3, 2021
549893e
OK: fix long long bug for windows
MuellerSeb Apr 3, 2021
d58de24
CI: use new cibw actions; restructure
MuellerSeb Apr 3, 2021
28f297d
CI: fix scipy version bug
MuellerSeb Apr 3, 2021
b3e5168
OK: 2. try long fix
MuellerSeb Apr 3, 2021
4a3645f
Drop Py35 support
MuellerSeb Apr 3, 2021
4d41742
CI: fix pypi upload action version
MuellerSeb Apr 3, 2021
78f0cfb
Merge pull request #183 from GeoStat-Framework/CI-fix
MuellerSeb Apr 3, 2021
6a86094
Merge branch 'develop' of github.com:GeoStat-Framework/PyKrige into c…
MuellerSeb Apr 3, 2021
ea5a68e
Compat: fix Sklearn validation bug
MuellerSeb Apr 3, 2021
1bb7dca
update .zenodo.json
MuellerSeb Apr 3, 2021
04c81ad
Merge pull request #184 from GeoStat-Framework/classification-kriging
MuellerSeb Apr 3, 2021
2b9dc05
update changelog
MuellerSeb Apr 3, 2021
bcb80f8
Doc: correctly use .md files in doc
MuellerSeb Apr 3, 2021
666137d
Doc: add latex logo
MuellerSeb Apr 3, 2021
e4224f8
Merge pull request #186 from GeoStat-Framework/doc_update
MuellerSeb Apr 3, 2021
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
Prev Previous commit
Next Next commit
Drop Py35 support
  • Loading branch information
MuellerSeb committed Apr 3, 2021
commit 4a3645f90472df3e347cdb44d8d6acb28e608add
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Build wheels
uses: joerick/[email protected]
env:
CIBW_BUILD: cp35-* cp36-* cp37-* cp38-* cp39-*
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-*
CIBW_BEFORE_BUILD: pip install numpy==1.19.* scipy==1.5.* cython==0.29.* setuptools
CIBW_TEST_REQUIRES: pytest scikit-learn
CIBW_TEST_COMMAND: pytest -v {project}/tests
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -89,7 +88,7 @@
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
include_package_data=True,
python_requires=">=3.5",
python_requires=">=3.6",
use_scm_version={
"relative_to": __file__,
"write_to": "pykrige/_version.py",
Expand Down