Skip to content

Releases: durandtibo/feu

[v0.3.1] Add support for pyarrow and python 3.13

01 Nov 20:31
84f0a0e
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @github-actions made their first contribution in #252

Full Changelog: v0.3.0...v0.3.1

[v0.3.0] Partial support for python 3.13

10 Oct 00:09
f0d58e3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.4...v0.3.0

[v0.2.4] Add support for requests

08 Oct 17:34
e2693dd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.3...v0.2.4

[v0.2.3] Add scipy support

26 Sep 22:19
6e08fb7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.2...v0.2.3

[v0.2.2] Support for sklearn

25 Sep 07:15
f88cc1b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.1...v0.2.2

[v0.2.1] Support for xarray

22 Sep 12:45
a584474
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

[v0.2.0] Replace fire by click

20 Sep 01:04
b623ce2
Compare
Choose a tag to compare

Breaking changes

This new release introduces several breaking changes when using the command line. In 0.1.x, feu uses fire to parse the command line arguments. In 0.2.x, feu uses click. The extra dependency fire is replaced by cli when installing feu:

# old
pip install feu[fire]
# new
pip install feu[cli]

Th syntax for the command lines changes a bit:

# old
python -m feu install --package=numpy --version=2.0.2
# new
python -m feu install --pkg-name=numpy --pkg-version=2.0.2
# old
python -m feu find_closest_version --pkg_name=numpy --pkg_version=2.0.2 --python_version=3.10
# new
python -m feu find-closest-version --pkg-name=numpy --pkg-version=2.0.2 --python-version=3.10
# old
python -m feu check_valid_version --pkg_name=numpy --pkg_version=2.0.2 --python_version=3.10
# new
python -m feu check-valid-version --pkg-name=numpy --pkg-version=2.0.2 --python-version=3.10

What's Changed

Full Changelog: v0.1.1...v0.2.0

[v0.1.1] Improve robustness

17 Sep 16:52
fd1080c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.0...v0.1.1

[v0.1.0] Closest version finder

15 Sep 17:32
f1f7f6a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.7...v0.1.0

[v0.0.7] sklearn package installer

14 Aug 21:59
44038d0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.6...v0.0.7