diff --git a/.gitignore b/.gitignore index ac070f57..1ff77bf2 100644 --- a/.gitignore +++ b/.gitignore @@ -118,7 +118,8 @@ gstools/_version.py docs/source/examples/ docs/source/generated/ - +# other settings +.vscode/ *.DS_Store *.zip diff --git a/CHANGELOG.md b/CHANGELOG.md index 850dd2e0..05a3f622 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,11 @@ All notable changes to **GSTools** will be documented in this file. -## [1.3.5] - Pure Pink - ? +## [1.3.5] - Pure Pink - 2022-01 + +### Changes +- remove caps for dependencies [#229](https://github.com/GeoStat-Framework/GSTools/pull/229) +- build linux wheels with manylinux2014 for all versions ([CIBW v2.3.1](https://github.com/pypa/cibuildwheel/releases/tag/v2.3.1)) [#227](https://github.com/GeoStat-Framework/GSTools/pull/227) ### Bugfixes - `Field.mesh` was not compatible with [meshio](https://github.com/nschloe/meshio) v5.1+ [#227](https://github.com/GeoStat-Framework/GSTools/pull/227) @@ -327,7 +331,8 @@ See: [#197](https://github.com/GeoStat-Framework/GSTools/issues/197) First release of GSTools. -[1.3.5]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.4...HEAD +[Unreleased]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.5...HEAD +[1.3.5]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.4...v1.3.5 [1.3.4]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.3...v1.3.4 [1.3.3]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.2...v1.3.3 [1.3.2]: https://github.com/GeoStat-Framework/gstools/compare/v1.3.1...v1.3.2 diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html index f5a6014e..e2649c4b 100644 --- a/docs/source/_templates/layout.html +++ b/docs/source/_templates/layout.html @@ -4,18 +4,24 @@ {{ super() }}
- GSTools GitHub - GSTools Zenodo DOI - GSTools PyPI +
- GeoStat Website - GeoStat Github - GeoStat Examples - GeoStat ReadTheDocs - GeoStat PyPI +

- Index - Sitemap - {% endblock %} + + {% endblock %} diff --git a/pyproject.toml b/pyproject.toml index 4846554b..488a001a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,8 +79,5 @@ test-extras = "test" test-command = "pytest -v {package}/tests" # Skip trying to test arm64 builds on Intel Macs test-skip = "*-macosx_arm64 *-macosx_universal2:arm64" - -[[tool.cibuildwheel.overrides]] -select = "*manylinux_i686" -# no wheels for 32 bit anymore -before-test = "pip install 'numpy<1.22'" +# no wheels for linux-32bit anymore for numpy>=1.22 +environment = "PIP_PREFER_BINARY=1" diff --git a/setup.cfg b/setup.cfg index 711a3a03..c2f206ff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -63,21 +63,19 @@ exclude = [options.extras_require] doc = - m2r2>=0.2.8,<1 - matplotlib>=3,<4 - meshzoo>=0.7,<1 - numpydoc>=1.1,<2 + m2r2>=0.2.8 + matplotlib>=3 + meshzoo>=0.7 + numpydoc>=1.1 pykrige>=1.5,<2 - pyvista>=0.31,<1 - sphinx>=3,<4 - sphinx-gallery>=0.8,<1 - sphinx-rtd-theme>=0.5,<1 + pyvista>=0.29 + sphinx>=4 + sphinx-gallery>=0.8 + sphinx-rtd-theme>=1 plotting = - matplotlib>=3,<4 - pyvista>=0.29,<1 + matplotlib>=3 + pyvista>=0.29 rust = gstools_core>=0.2.0,<1 test = - coverage[toml]>=5.2.1,<6 - pytest>=6.0,<7 - pytest-cov>=2.11.0,<3 + pytest-cov>=3