Skip to content

Commit e40ad31

Browse files
committed
Fix Via's requirements files
This is the result of running `make --always-make requirements` on Linux. This fixes a couple of issues that were added to the requirements files by #905: 1. #905 added a macOS-specific dependency ([appnope](https://pypi.org/project/appnope/)) to Via's `dev.txt`. This happened because the requirements files had been compiled on macOS for #905. Requirements files have to be compiled on Linux! 2. #905 removed the `--allow-unsafe` argument from the `pip-compile` command. This option should be used, see: https://github.com/jazzband/pip-tools#deprecations
1 parent f933377 commit e40ad31

File tree

6 files changed

+25
-17
lines changed

6 files changed

+25
-17
lines changed

requirements/build.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.8
33
# by the following command:
44
#
5-
# pip-compile requirements/build.in
5+
# pip-compile --allow-unsafe requirements/build.in
66
#
77
build==0.8.0
88
# via pip-tools
@@ -34,5 +34,7 @@ zipp==3.8.1
3434
# via importlib-metadata
3535

3636
# The following packages are considered to be unsafe in a requirements file:
37-
# pip
38-
# setuptools
37+
pip==23.1.2
38+
# via pip-tools
39+
setuptools==67.8.0
40+
# via pip-tools

requirements/checkformatting.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.8
33
# by the following command:
44
#
5-
# pip-compile requirements/checkformatting.in
5+
# pip-compile --allow-unsafe requirements/checkformatting.in
66
#
77
black==23.3.0
88
# via -r requirements/checkformatting.in
@@ -46,5 +46,7 @@ zipp==3.8.1
4646
# via importlib-metadata
4747

4848
# The following packages are considered to be unsafe in a requirements file:
49-
# pip
50-
# setuptools
49+
pip==23.1.2
50+
# via pip-tools
51+
setuptools==67.8.0
52+
# via pip-tools

requirements/coverage.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.8
33
# by the following command:
44
#
5-
# pip-compile requirements/coverage.in
5+
# pip-compile --allow-unsafe requirements/coverage.in
66
#
77
build==0.8.0
88
# via pip-tools
@@ -34,5 +34,7 @@ zipp==3.8.1
3434
# via importlib-metadata
3535

3636
# The following packages are considered to be unsafe in a requirements file:
37-
# pip
38-
# setuptools
37+
pip==23.1.2
38+
# via pip-tools
39+
setuptools==67.8.0
40+
# via pip-tools

requirements/dev.txt

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
#
55
# pip-compile --allow-unsafe requirements/dev.in
66
#
7-
appnope==0.1.3
8-
# via ipython
97
asttokens==2.2.1
108
# via stack-data
119
attrs==20.3.0

requirements/format.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.8
33
# by the following command:
44
#
5-
# pip-compile requirements/format.in
5+
# pip-compile --allow-unsafe requirements/format.in
66
#
77
black==23.3.0
88
# via -r requirements/format.in
@@ -46,5 +46,7 @@ zipp==3.8.1
4646
# via importlib-metadata
4747

4848
# The following packages are considered to be unsafe in a requirements file:
49-
# pip
50-
# setuptools
49+
pip==23.1.2
50+
# via pip-tools
51+
setuptools==67.8.0
52+
# via pip-tools

requirements/updatepdfjs.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.8
33
# by the following command:
44
#
5-
# pip-compile requirements/updatepdfjs.in
5+
# pip-compile --allow-unsafe requirements/updatepdfjs.in
66
#
77
build==0.8.0
88
# via pip-tools
@@ -36,5 +36,7 @@ zipp==3.4.1
3636
# importlib-resources
3737

3838
# The following packages are considered to be unsafe in a requirements file:
39-
# pip
40-
# setuptools
39+
pip==23.1.2
40+
# via pip-tools
41+
setuptools==67.8.0
42+
# via pip-tools

0 commit comments

Comments
 (0)