From 94198282d965a64cd9ccf6e074fd86a929c7041b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 11:16:53 +0000 Subject: [PATCH] Update all dependencies --- .github/workflows/build_wheels.yml | 6 +++--- .github/workflows/coverage.yml | 2 +- .github/workflows/run_tests.yml | 2 +- dev-requirements.txt | 4 ++-- requirements.txt | 4 ++-- setup.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index ea0688950..c7cde2eaa 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Check out - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # unshallow fetch for setuptools-scm @@ -28,7 +28,7 @@ jobs: python-version: '3.8' - name: Build wheels (Python 3.7 through 3.9) - uses: pypa/cibuildwheel@v2.11.1 + uses: pypa/cibuildwheel@v2.16.2 with: output-dir: dist env: @@ -41,7 +41,7 @@ jobs: CIBW_ENVIRONMENT: "CFLAGS='-g0'" - name: Build wheels (Python 3.10 only) - uses: pypa/cibuildwheel@v2.11.1 + uses: pypa/cibuildwheel@v2.16.2 with: output-dir: dist env: diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4f8bba188..cf272eab7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Check out - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 25b324dbb..f99934ab6 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Check out - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true diff --git a/dev-requirements.txt b/dev-requirements.txt index 55cb51ff5..9d1e7e889 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,2 +1,2 @@ -pytest-cov==4.0.0 -pytest-xdist==2.5.0 +pytest-cov==4.1.0 +pytest-xdist==3.5.0 diff --git a/requirements.txt b/requirements.txt index a02da434e..840e5a65c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ # 'lxml' is not a primary requirement of psautohint but it's listed here because we # want to have control over the version and guarantee that the XML output remains stable -lxml==4.9.1 -fonttools[lxml,ufo]==4.37.4 +lxml==4.9.3 +fonttools[lxml,ufo]==4.45.1 diff --git a/setup.py b/setup.py index 2ed6b27f2..5bfce5244 100644 --- a/setup.py +++ b/setup.py @@ -589,7 +589,7 @@ def run(self): extras_require={ "testing": [ "pytest-cov >=4, <5", - "pytest-xdist >=2.5.0, <2.6.0", + "pytest-xdist >=3.5.0, <3.6.0", ], }, cmdclass=cmdclass,