Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 8, 2024
1 parent 640a259 commit 9465136
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
steps:

- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Install Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'

- name: Build wheels (Python 3.7 through 3.9)
uses: pypa/cibuildwheel@v2.11.1
uses: pypa/cibuildwheel@v2.16.5
with:
output-dir: dist
env:
Expand All @@ -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.5
with:
output-dir: dist
env:
Expand All @@ -61,7 +61,7 @@ jobs:
python -m build --sdist
- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheelstorage
path: ./dist/*
Expand All @@ -87,7 +87,7 @@ jobs:
shell: bash

- name: Download release assets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheelstorage
path: dist
Expand All @@ -99,7 +99,7 @@ jobs:
password: ${{ secrets.pypi_password }}

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
steps:

- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
steps:

- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest-cov==4.0.0
pytest-xdist==2.5.0
pytest-cov==4.1.0
pytest-xdist==3.5.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
lxml==5.1.0
fonttools[lxml,ufo]==4.37.4
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9465136

Please sign in to comment.