Skip to content

Commit b4e9070

Browse files
committed
Fix building on FreeBSD
Cirrus CI on FreeBSD failed because "No packages available to install matching 'py37-pip' have been found in the repositories"i [1]. Package 'py37-pip' has been replaced with 'py38-pip', see [2]. 1. https://cirrus-ci.com/task/6375178809638912 2. https://www.freshports.org/devel/py-pip/
1 parent f792285 commit b4e9070

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.cirrus.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ freebsd_12_2: &freebsd_12_2
6464
env:
6565
CC: clang
6666
install_script:
67-
- ASSUME_ALWAYS_YES=yes pkg bootstrap -f; pkg install -y cmake fusefs-libs pkgconf python3 py37-pip fio
67+
- ASSUME_ALWAYS_YES=yes pkg bootstrap -f; pkg install -y cmake fusefs-libs pkgconf python3 py38-pip fio
6868
- kldload fuse
6969
- kldstat
70-
- sudo python3.7 -m pip install pytest
70+
- sudo python3.8 -m pip install pytest
7171

7272
task:
7373
matrix:

0 commit comments

Comments
 (0)