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

chore(deps): update all dependencies #195

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
submodules: 'recursive'

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
# For presubmit, just build / test the most common arch
CIBW_ARCHS: native
Expand All @@ -66,7 +66,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand All @@ -93,7 +93,7 @@ jobs:

- id: load-cache
name: Load cached C library
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/usr
key:
Expand All @@ -116,7 +116,7 @@ jobs:
make -C build all install

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
# For presubmit, just build / test the most common arch
CIBW_ARCHS: native
Expand All @@ -129,7 +129,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- id: load-cache
name: Load cached C library
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}\usr
key:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
fi

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_ARCHS_WINDOWS: ${{ steps.platform-arch.outputs.arch }}
# For presubmit, skip build / test for pypy
Expand All @@ -213,7 +213,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
22 changes: 11 additions & 11 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-python@v5
- name: Build
run: python setup.py sdist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_ENVIRONMENT: >
Expand All @@ -70,7 +70,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- id: load-cache
name: Load cached C library
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/usr
key:
Expand All @@ -121,7 +121,7 @@ jobs:
make -C build all install

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_ENVIRONMENT: >
Expand All @@ -131,7 +131,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:

- id: load-cache
name: Load cached C library
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}\usr
key:
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
fi

- name: Build Wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_ARCHS_WINDOWS: ${{ steps.platform-arch.outputs.arch }}
CIBW_ENVIRONMENT: >
Expand All @@ -205,7 +205,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: py.test -v {project}/tests

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand All @@ -221,12 +221,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Download all the wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: wheelhouse/
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/docker/docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ubuntu:22.04
from ubuntu:24.04

ENV DEBIAN_FRONTEND noninteractive

Expand Down
54 changes: 27 additions & 27 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@
#
# pip-compile --allow-unsafe --generate-hashes requirements.in
#
cmake==3.27.9 \
--hash=sha256:07bf268f42c9cdf3b06e04cc145c203b83d5a700f7c2a597772610f48c3dca04 \
--hash=sha256:434714990d82e3c3936a726c1706c6a1d5a34964a7415d1433af0904a994e414 \
--hash=sha256:5c83fe2c6059aaa3ad86f49e6e3da4483e582994a6c152aa7efa175282f7b207 \
--hash=sha256:5c91df483ebaa03107f8b9488de207ff32fc74ef93bba79ac52dd830fff40b06 \
--hash=sha256:5e8cc5554de86a072e6cbfef725e7dff542bc164a08f5fd41bc194f7778710b7 \
--hash=sha256:64c7cd776d07a82163c3265cc82920e64e328d1c87049644005bfd49e4de4d7b \
--hash=sha256:87e95c452e522c9379bbd04b300a0b28ba03841d57532166e109669f82f2bdef \
--hash=sha256:8eb760800b8bd0178a29334ea3c729ac0534865a30f40994cdfc9c0897488a9e \
--hash=sha256:9163fabf484b437cd11d5abe0b5161de57e9c22c75f779c9e6df7765b8138b42 \
--hash=sha256:baad87ffe2b257ad51f66fab23f3ba5c16e24d757ba1543d4edb3b6cb4de47a2 \
--hash=sha256:c0603c6dc9c7a4c6fce2717e5813bc6126d86388ce057f5bf1a643384966d784 \
--hash=sha256:d3030f9f3773154cf6e8c581eac7b0225822f08d6bce37995180d901dfc62465 \
--hash=sha256:d7880be7798bd58e43e0eb2e0ce67e7bb0d2ae29b3dc8f3cfbc1f991ae94305d \
--hash=sha256:d8306b6e4442496dc1d87e3e64394ebbf02c04f1c6324a1a37cad3695f7d835a \
--hash=sha256:d8a40eef1268c91e5b520b28fd5fe0591d750e48e44276dbfd493a14ee595c41 \
--hash=sha256:e09cddb8338aab68b17f99ac0ac39ec3d9f8923f0d1527d25f9b4e1bdf8fa057 \
--hash=sha256:f564e739b0ef37c1422fe91938b2ab971e21756b848bf840e3672ef3acacf73f
cmake==3.29.5 \
--hash=sha256:099f8e0ef1e3fb80bfc5414dc9fe2acbb0d1ae4fd1a77a4faa3c795fe596a3ee \
--hash=sha256:24e0ac2c28b16d4e172eec164573805fe83d98d0e474e1fe3341d3a728d9e8ef \
--hash=sha256:3107a210c0ac75a826c175578c7e6bb78c11a94c661768a6751ce91ca5ca000b \
--hash=sha256:48154f188fa2db3c832400d05335df81441462fd763d0b1cfbbceff162331949 \
--hash=sha256:4d5908b281f6f9c9213a8fddd6cd5ae3c9903e69112060e082a17638324b1948 \
--hash=sha256:5f5cc49db0f5e1e0e40e9274510481e956889866f4f68548d84b6836ec79b000 \
--hash=sha256:71dec01d15ab0428ec5ddc4510a528b32463c19230fc5f206929a8ee64a1691c \
--hash=sha256:757ae345c0908fff3ffeb1ef3d02f0f8e2b15841cc9406bbe610254d192eeaf9 \
--hash=sha256:81c72ed18df4629fce9b06155cf4164384cac0b5aa3b61208aa94c71006cacd7 \
--hash=sha256:977dfdf496b631ca851d9560a831def6d895c6a928624ab1b97b635b80d001f1 \
--hash=sha256:9869db480d08b797c72ab904c997bbcc0ea7d9279f2b2474da5c7e3f9f6ce3a2 \
--hash=sha256:a5775ad8de4099e42e89c2d3a42693cc577b11c25e04a51ecd563d7cff3b8968 \
--hash=sha256:b7a5a25a797845e59607a1a5c5c5e45ee675ea278729d1d632b15d8f123a3370 \
--hash=sha256:d2dd30d8302c23c959f77b5a45170854a76c76cea6a09f0eb4147d0827342aa3 \
--hash=sha256:e36dca925f083e8279349167f8ed4f736265deb245e84cf66bf3d75dda830207 \
--hash=sha256:ea6d0bf28417e639334d3bac7dae864654247976e0e056fb6065e47689e9a04b \
--hash=sha256:fb42f6b806123c9a62297799f079ac1429c918523e2318e55c201fd2fba1bdbf
# via -r requirements.in
wheel==0.42.0 \
--hash=sha256:177f9c9b0d45c47873b619f5b650346d632cdc35fb5e4d25058e09c9e581433d \
--hash=sha256:c45be39f7882c9d34243236f2d63cbd58039e360f85d0913425fbd7ceea617a8
wheel==0.43.0 \
--hash=sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85 \
--hash=sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81
# via -r requirements.in

# The following packages are considered to be unsafe in a requirements file:
pip==23.3.1 \
--hash=sha256:1fcaa041308d01f14575f6d0d2ea4b75a3e2871fe4f9c694976f908768e14174 \
--hash=sha256:55eb67bb6171d37447e82213be585b75fe2b12b359e993773aca4de9247a052b
pip==24.0 \
--hash=sha256:ba0d021a166865d2265246961bec0152ff124de910c5cc39f1156ce3fa7c69dc \
--hash=sha256:ea9bd1a847e8c5774a5777bb398c19e80bcd4e2aa16a4b301b718fe6f593aba2
# via -r requirements.in
setuptools==69.0.2 \
--hash=sha256:1e8fdff6797d3865f37397be788a4e3cba233608e9b509382a2777d25ebde7f2 \
--hash=sha256:735896e78a4742605974de002ac60562d286fa8051a7e2299445e8e8fbb01aa6
setuptools==70.0.0 \
--hash=sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4 \
--hash=sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0
# via -r requirements.in