Skip to content

Commit

Permalink
MNT for release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewSZhang committed Sep 12, 2024
1 parent cec2acf commit 07f7f66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'fastcan',
'c', 'cython',
version: '0.2.1',
version: '0.2.2',
license: 'MIT',
meson_version: '>= 1.1.0',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fastcan"
version = "0.2.1"
version = "0.2.2"
description = "A fast canonical-correlation-based feature selection method"
authors = [
{ name = "Matthew Sikai Zhang", email = "matthew.szhang91@gmail.com" },
Expand Down Expand Up @@ -84,8 +84,8 @@ scikit-learn = ">=1.5.0,<1.6"
scikit-learn = ">=1.5.0,<1.6"

[tool.pixi.tasks]
time-h = { cmd = "python -m timeit -n 5 -s 'import numpy as np; from fastcan import FastCan; X = np.random.rand(3000, 100); y = np.random.rand(3000, 20)' 's = FastCan(100, verbose=0).fit(X, y)'" }
time-eta = { cmd = "python -m timeit -n 5 -s 'import numpy as np; from fastcan import FastCan; X = np.random.rand(3000, 100); y = np.random.rand(3000, 20)' 's = FastCan(100, eta=True, verbose=0).fit(X, y)'" }
time-h = "python -m timeit -n 5 -s 'import numpy as np; from fastcan import FastCan; X = np.random.rand(3000, 100); y = np.random.rand(3000, 20)' 's = FastCan(100, verbose=0).fit(X, y)'"
time-eta = "python -m timeit -n 5 -s 'import numpy as np; from fastcan import FastCan; X = np.random.rand(3000, 100); y = np.random.rand(3000, 20)' 's = FastCan(100, eta=True, verbose=0).fit(X, y)'"

[tool.pixi.feature.test.tasks]
test = { cmd = "pytest", cwd = "tests" }
Expand Down

0 comments on commit 07f7f66

Please sign in to comment.