Skip to content

Commit

Permalink
[testing] python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nilfm99 committed Mar 20, 2024
1 parent 470dee9 commit 83585e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/libvmaf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.11
- name: Install meson and ninja
run: |
python -m pip install --upgrade pip
Expand All @@ -59,13 +59,7 @@ jobs:
- name: Install dependencies (mac)
if: matrix.os == 'macos-latest'
run: |
brew install -q ninja nasm ccache llvm@14 libomp
echo "BREW PREFIX"
echo $(brew --prefix)
brew info llvm@14
brew info libomp
ls -R $(brew --prefix)/opt/
brew install -q ninja nasm ccache llvm libomp
$CC --version
meson --version
Expand All @@ -92,9 +86,9 @@ jobs:
- name: Run tox tests (mac)
if: matrix.os == 'macos-latest'
run: |
PATH=$(brew --prefix)/opt/llvm@14/bin:$PATH \
CC=$(brew --prefix)/opt/llvm@14/bin/clang \
CXX=$(brew --prefix)/opt/llvm@14/bin/clang++ \
PATH=$(brew --prefix)/opt/llvm/bin:$PATH \
CC=$(brew --prefix)/opt/llvm/bin/clang \
CXX=$(brew --prefix)/opt/llvm/bin/clang++ \
tox -c python
- name: Get binary path & Current Release
Expand Down
2 changes: 1 addition & 1 deletion python/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py312, coverage
envlist = py311, coverage


[testenv]
Expand Down

0 comments on commit 83585e2

Please sign in to comment.