From bc3ebefe354fdff736972518dcb562566160ffb1 Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 21 Mar 2022 06:14:03 +0000 Subject: [PATCH] Update dependencies --- cibuildwheel/resources/build-platforms.toml | 22 +-- .../resources/constraints-python310.txt | 4 +- .../resources/constraints-python36.txt | 2 +- .../resources/constraints-python37.txt | 4 +- .../resources/constraints-python38.txt | 4 +- .../resources/constraints-python39.txt | 4 +- cibuildwheel/resources/constraints.txt | 4 +- .../resources/pinned_docker_images.cfg | 54 +++--- docs/working-examples.md | 175 +++++++++--------- 9 files changed, 138 insertions(+), 135 deletions(-) diff --git a/cibuildwheel/resources/build-platforms.toml b/cibuildwheel/resources/build-platforms.toml index 5bb0350e..d9ba89a5 100644 --- a/cibuildwheel/resources/build-platforms.toml +++ b/cibuildwheel/resources/build-platforms.toml @@ -68,12 +68,12 @@ python_configurations = [ { identifier = "cp38-macosx_x86_64", version = "3.8", url = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, { identifier = "cp38-macosx_arm64", version = "3.8", url = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, { identifier = "cp38-macosx_universal2", version = "3.8", url = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, - { identifier = "cp39-macosx_x86_64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.10/python-3.9.10-macos11.pkg" }, - { identifier = "cp39-macosx_arm64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.10/python-3.9.10-macos11.pkg" }, - { identifier = "cp39-macosx_universal2", version = "3.9", url = "https://www.python.org/ftp/python/3.9.10/python-3.9.10-macos11.pkg" }, - { identifier = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.2/python-3.10.2-macos11.pkg" }, - { identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.2/python-3.10.2-macos11.pkg" }, - { identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.2/python-3.10.2-macos11.pkg" }, + { identifier = "cp39-macosx_x86_64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.11/python-3.9.11-macos11.pkg" }, + { identifier = "cp39-macosx_arm64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.11/python-3.9.11-macos11.pkg" }, + { identifier = "cp39-macosx_universal2", version = "3.9", url = "https://www.python.org/ftp/python/3.9.11/python-3.9.11-macos11.pkg" }, + { identifier = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.3/python-3.10.3-macos11.pkg" }, + { identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.3/python-3.10.3-macos11.pkg" }, + { identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.3/python-3.10.3-macos11.pkg" }, { identifier = "pp37-macosx_x86_64", version = "3.7", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.7-osx64.tar.bz2" }, { identifier = "pp38-macosx_x86_64", version = "3.8", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.8-osx64.tar.bz2" }, { identifier = "pp39-macosx_x86_64", version = "3.9", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.8-osx64.tar.bz2" }, @@ -87,12 +87,12 @@ python_configurations = [ { identifier = "cp37-win_amd64", version = "3.7.9", arch = "64" }, { identifier = "cp38-win32", version = "3.8.10", arch = "32" }, { identifier = "cp38-win_amd64", version = "3.8.10", arch = "64" }, - { identifier = "cp39-win32", version = "3.9.10", arch = "32" }, - { identifier = "cp39-win_amd64", version = "3.9.10", arch = "64" }, - { identifier = "cp310-win32", version = "3.10.2", arch = "32" }, - { identifier = "cp310-win_amd64", version = "3.10.2", arch = "64" }, + { identifier = "cp39-win32", version = "3.9.11.1", arch = "32" }, + { identifier = "cp39-win_amd64", version = "3.9.11.1", arch = "64" }, + { identifier = "cp310-win32", version = "3.10.3", arch = "32" }, + { identifier = "cp310-win_amd64", version = "3.10.3", arch = "64" }, { identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" }, - { identifier = "cp310-win_arm64", version = "3.10.2", arch = "ARM64" }, + { identifier = "cp310-win_arm64", version = "3.10.3", arch = "ARM64" }, { identifier = "pp37-win_amd64", version = "3.7", arch = "64", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.7-win64.zip" }, { identifier = "pp38-win_amd64", version = "3.8", arch = "64", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.8-win64.zip" }, { identifier = "pp39-win_amd64", version = "3.9", arch = "64", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.8-win64.zip" }, diff --git a/cibuildwheel/resources/constraints-python310.txt b/cibuildwheel/resources/constraints-python310.txt index 4019c047..12e71790 100644 --- a/cibuildwheel/resources/constraints-python310.txt +++ b/cibuildwheel/resources/constraints-python310.txt @@ -16,7 +16,7 @@ six==1.16.0 # via virtualenv typing-extensions==4.1.1 # via delocate -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via @@ -26,5 +26,5 @@ wheel==0.37.1 # The following packages are considered to be unsafe in a requirements file: pip==22.0.4 # via -r cibuildwheel/resources/constraints.in -setuptools==60.9.3 +setuptools==60.10.0 # via -r cibuildwheel/resources/constraints.in diff --git a/cibuildwheel/resources/constraints-python36.txt b/cibuildwheel/resources/constraints-python36.txt index e0282d50..a1a92330 100644 --- a/cibuildwheel/resources/constraints-python36.txt +++ b/cibuildwheel/resources/constraints-python36.txt @@ -22,7 +22,7 @@ typing-extensions==4.1.1 # via # delocate # importlib-metadata -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via diff --git a/cibuildwheel/resources/constraints-python37.txt b/cibuildwheel/resources/constraints-python37.txt index 56e691c5..33087bb9 100644 --- a/cibuildwheel/resources/constraints-python37.txt +++ b/cibuildwheel/resources/constraints-python37.txt @@ -20,7 +20,7 @@ typing-extensions==4.1.1 # via # delocate # importlib-metadata -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via @@ -32,5 +32,5 @@ zipp==3.7.0 # The following packages are considered to be unsafe in a requirements file: pip==22.0.4 # via -r cibuildwheel/resources/constraints.in -setuptools==60.9.3 +setuptools==60.10.0 # via -r cibuildwheel/resources/constraints.in diff --git a/cibuildwheel/resources/constraints-python38.txt b/cibuildwheel/resources/constraints-python38.txt index 3d1498d4..5dbea511 100644 --- a/cibuildwheel/resources/constraints-python38.txt +++ b/cibuildwheel/resources/constraints-python38.txt @@ -16,7 +16,7 @@ six==1.16.0 # via virtualenv typing-extensions==4.1.1 # via delocate -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via @@ -26,5 +26,5 @@ wheel==0.37.1 # The following packages are considered to be unsafe in a requirements file: pip==22.0.4 # via -r cibuildwheel/resources/constraints.in -setuptools==60.9.3 +setuptools==60.10.0 # via -r cibuildwheel/resources/constraints.in diff --git a/cibuildwheel/resources/constraints-python39.txt b/cibuildwheel/resources/constraints-python39.txt index c628c805..cefd6779 100644 --- a/cibuildwheel/resources/constraints-python39.txt +++ b/cibuildwheel/resources/constraints-python39.txt @@ -16,7 +16,7 @@ six==1.16.0 # via virtualenv typing-extensions==4.1.1 # via delocate -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via @@ -26,5 +26,5 @@ wheel==0.37.1 # The following packages are considered to be unsafe in a requirements file: pip==22.0.4 # via -r cibuildwheel/resources/constraints.in -setuptools==60.9.3 +setuptools==60.10.0 # via -r cibuildwheel/resources/constraints.in diff --git a/cibuildwheel/resources/constraints.txt b/cibuildwheel/resources/constraints.txt index c628c805..cefd6779 100644 --- a/cibuildwheel/resources/constraints.txt +++ b/cibuildwheel/resources/constraints.txt @@ -16,7 +16,7 @@ six==1.16.0 # via virtualenv typing-extensions==4.1.1 # via delocate -virtualenv==20.13.3 +virtualenv==20.13.4 # via -r cibuildwheel/resources/constraints.in wheel==0.37.1 # via @@ -26,5 +26,5 @@ wheel==0.37.1 # The following packages are considered to be unsafe in a requirements file: pip==22.0.4 # via -r cibuildwheel/resources/constraints.in -setuptools==60.9.3 +setuptools==60.10.0 # via -r cibuildwheel/resources/constraints.in diff --git a/cibuildwheel/resources/pinned_docker_images.cfg b/cibuildwheel/resources/pinned_docker_images.cfg index 95530271..0508aa34 100644 --- a/cibuildwheel/resources/pinned_docker_images.cfg +++ b/cibuildwheel/resources/pinned_docker_images.cfg @@ -1,43 +1,43 @@ [x86_64] -manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-03-06-f52299e -manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-03-14-b2cd80b -manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-03-14-b2cd80b -manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-03-14-b2cd80b -musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-03-14-b2cd80b +manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-03-18-11e604c +manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-03-19-a819637 +manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-03-19-a819637 +musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-03-19-a819637 [i686] -manylinux1 = quay.io/pypa/manylinux1_i686:2022-03-06-f52299e -manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-03-14-b2cd80b -manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-03-14-b2cd80b -manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-03-14-b2cd80b -musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-03-14-b2cd80b +manylinux1 = quay.io/pypa/manylinux1_i686:2022-03-18-11e604c +manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-03-19-a819637 +manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-03-19-a819637 +musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-03-19-a819637 [pypy_x86_64] -manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-03-14-b2cd80b -manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-03-14-b2cd80b -manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-03-14-b2cd80b +manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-03-19-a819637 +manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-03-19-a819637 [pypy_i686] -manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-03-14-b2cd80b -manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-03-14-b2cd80b -manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-03-14-b2cd80b +manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-03-19-a819637 +manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-03-19-a819637 [aarch64] -manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-03-06-4efbd88 -manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-03-06-4efbd88 -musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-03-06-4efbd88 +manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-03-19-a819637 +musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-03-14-b2cd80b [ppc64le] -manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-03-06-4efbd88 -manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-03-06-4efbd88 -musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-03-06-4efbd88 +manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-03-19-a819637 +musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-03-19-a819637 [s390x] -manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-03-06-4efbd88 -manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-03-06-4efbd88 -musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-03-06-4efbd88 +manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-03-19-a819637 +musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-03-19-a819637 [pypy_aarch64] -manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-03-06-4efbd88 -manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-03-06-4efbd88 +manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-03-19-a819637 +manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-03-19-a819637 diff --git a/docs/working-examples.md b/docs/working-examples.md index 7aa3a86f..9917f6d5 100644 --- a/docs/working-examples.md +++ b/docs/working-examples.md @@ -52,8 +52,8 @@ title: Working examples | [DeepForest][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | An Efficient, Scalable and Optimized Python Framework for Deep Forest (2021.2.1) | | [google neuroglancer][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | WebGL-based viewer for volumetric data | | [Parselmouth][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python interface to the Praat software package, using pybind11, C++17 and CMake, with the core Praat static library built only once and shared between wheels. | -| [AutoPy][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes a Windows Travis build. | | [Psycopg 3][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A modern implementation of a PostgreSQL adapter for Python | +| [AutoPy][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes a Windows Travis build. | | [H3-py][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Python bindings for H3, a hierarchical hexagonal geospatial indexing system | | [Rtree][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Rtree: spatial index for Python GIS ΒΆ | | [markupsafe][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Safely add untrusted strings to HTML/XML markup. | @@ -68,6 +68,7 @@ title: Working examples | [sourmash][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Quickly search, compare, and analyze genomic and metagenomic data sets. | | [time-machine][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Time mocking library using only the CPython C API. | | [CTranslate2][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes libraries from the [Intel oneAPI toolkit](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit.html) and CUDA kernels compiled for multiple GPU architectures. | +| [abess][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A fast best-subset selection library. It uses cibuildwheel to build a large project with C++ extensions. | | [matrixprofile][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python 3 library making time series data mining tasks, utilizing matrix profile algorithms, accessible to everyone. | | [jq.py][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Python bindings for jq | | [iminuit][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Jupyter-friendly Python interface for C++ MINUIT2 | @@ -139,8 +140,8 @@ title: Working examples [DeepForest]: https://github.com/LAMDA-NJU/Deep-Forest [google neuroglancer]: https://github.com/google/neuroglancer [Parselmouth]: https://github.com/YannickJadoul/Parselmouth -[AutoPy]: https://github.com/autopilot-rs/autopy [Psycopg 3]: https://github.com/psycopg/psycopg +[AutoPy]: https://github.com/autopilot-rs/autopy [H3-py]: https://github.com/uber/h3-py [Rtree]: https://github.com/Toblerity/rtree [markupsafe]: https://github.com/pallets/markupsafe @@ -155,6 +156,7 @@ title: Working examples [sourmash]: https://github.com/dib-lab/sourmash [time-machine]: https://github.com/adamchainz/time-machine [CTranslate2]: https://github.com/OpenNMT/CTranslate2 +[abess]: https://github.com/abess-team/abess [matrixprofile]: https://github.com/matrix-profile-foundation/matrixprofile [jq.py]: https://github.com/mwilliamson/jq.py [iminuit]: https://github.com/scikit-hep/iminuit @@ -192,92 +194,93 @@ title: Working examples [apple icon]: data/readme_icons/apple.svg [linux icon]: data/readme_icons/linux.svg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +