Skip to content

Commit

Permalink
Merge pull request #3367 from fonttools/pyup-scheduled-update-2023-12-04
Browse files Browse the repository at this point in the history
Scheduled weekly dependency update for week 49
  • Loading branch information
khaledhosny committed Dec 4, 2023
2 parents 7e92c6a + 6025ec6 commit c7e0078
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Doc/docs-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx==7.2.6
sphinx_rtd_theme==1.3.0
reportlab==4.0.6
sphinx_rtd_theme==2.0.0
reportlab==4.0.7
freetype-py==2.4.0
5 changes: 4 additions & 1 deletion Lib/fontTools/afmLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@
# regular expressions to parse composite info lines of the form:
# Aacute 2 ; PCC A 0 0 ; PCC acute 182 211 ;
compositeRE = re.compile(
r"([.A-Za-z0-9_]+)" r"\s+" r"(\d+)" r"\s*;\s*" # char name # number of parts
r"([.A-Za-z0-9_]+)" # char name
r"\s+"
r"(\d+)" # number of parts
r"\s*;\s*"
)
componentRE = re.compile(
r"PCC\s+" # PPC
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sphinx>=1.5.5
mypy>=0.782

# Pin black as each version could change formatting, breaking CI randomly.
black==23.10.0
black==23.11.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ brotli==1.1.0; platform_python_implementation != "PyPy"
brotlicffi==1.1.0.0; platform_python_implementation == "PyPy"
unicodedata2==15.1.0; python_version <= '3.11'
scipy==1.10.0; platform_python_implementation != "PyPy" and python_version <= '3.8' # pyup: ignore
scipy==1.11.3; platform_python_implementation != "PyPy" and python_version >= '3.9'
scipy==1.11.4; platform_python_implementation != "PyPy" and python_version >= '3.9'
munkres==1.1.4; platform_python_implementation == "PyPy"
zopfli==0.2.3
fs==2.4.16
Expand All @@ -15,6 +15,6 @@ ufo2ft==2.33.4
pyobjc==10.0; sys_platform == "darwin"
freetype-py==2.4.0
uharfbuzz==0.37.3
glyphsLib==6.4.1 # this is only required to run Tests/varLib/interpolatable_test.py
glyphsLib==6.6.0 # this is only required to run Tests/varLib/interpolatable_test.py
lxml==4.9.3
sympy==1.12

0 comments on commit c7e0078

Please sign in to comment.