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

Update all dependencies #403

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.19.2
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.19.2
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==5.0.0
pytest-xdist==3.6.1
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.2.2
fonttools[lxml,ufo]==4.37.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,8 @@ def run(self):
],
extras_require={
"testing": [
"pytest-cov >=4, <5",
"pytest-xdist >=2.5.0, <2.6.0",
"pytest-cov >=5, <6",
"pytest-xdist >=3.6.1, <3.7.0",
],
},
cmdclass=cmdclass,
Expand Down
Loading