Skip to content

Commit a714c9e

Browse files
committed
CI macos-13
1 parent 6082d65 commit a714c9e

File tree

4 files changed

+31
-30
lines changed

4 files changed

+31
-30
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
os: [ubuntu-latest, windows-latest, macos-12, macos-14]
36+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
3737

3838
runs-on: ${{ matrix.os }}
3939
needs: test

pixi.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastcan"
3-
version = "0.1.23"
3+
version = "0.1.24"
44
description = "A fast canonical-correlation-based feature selection method"
55
authors = [
66
{ name = "Matthew Sikai Zhang", email = "matthew.szhang91@gmail.com" },

tests/test_correlation.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
"""Test FastCan"""
33

44
import numpy as np
5+
import pytest
56
from numpy.testing import (
67
assert_almost_equal,
7-
assert_array_equal,
88
assert_array_almost_equal,
9+
assert_array_equal,
910
)
1011
from sklearn.cross_decomposition import CCA
1112
from sklearn.datasets import make_classification, make_regression
1213
from sklearn.linear_model import LinearRegression
13-
import pytest
14+
1415
from fastcan import FastCan
1516

1617

0 commit comments

Comments
 (0)