Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-prelease Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=test
- name: Run tests
# opencv-python is gated out on 3.14t (no cp314t wheel yet), so skip the
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-prelease Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=docs
- uses: actions/configure-pages@v6
- run: uv run sphinx-build -c docs . docs/_build/html
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.14t
3.15t
7 changes: 7 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -1354,11 +1354,13 @@
* [Ternary Search](searches/ternary_search.py)

## [Sorts](sorts)
* [Adaptive Merge Sort](sorts/adaptive_merge_sort.py)
* [Bead Sort](sorts/bead_sort.py)
* [Binary Insertion Sort](sorts/binary_insertion_sort.py)
* [Bitonic Sort](sorts/bitonic_sort.py)
* [Bogo Sort](sorts/bogo_sort.py)
* [Bubble Sort](sorts/bubble_sort.py)
* [Bubble Sort Recursive](sorts/bubble_sort_recursive.py)
* [Bucket Sort](sorts/bucket_sort.py)
* [Circle Sort](sorts/circle_sort.py)
* [Cocktail Shaker Sort](sorts/cocktail_shaker_sort.py)
Expand All @@ -1376,6 +1378,7 @@
* [Insertion Sort](sorts/insertion_sort.py)
* [Intro Sort](sorts/intro_sort.py)
* [Iterative Merge Sort](sorts/iterative_merge_sort.py)
* [Kirkpatrick Reisch Sort](sorts/kirkpatrick_reisch_sort.py)
* [Merge Insertion Sort](sorts/merge_insertion_sort.py)
* [Merge Sort](sorts/merge_sort.py)
* [Msd Radix Sort](sorts/msd_radix_sort.py)
Expand All @@ -1387,16 +1390,20 @@
* [Patience Sort](sorts/patience_sort.py)
* [Pigeon Sort](sorts/pigeon_sort.py)
* [Pigeonhole Sort](sorts/pigeonhole_sort.py)
* [Power Sort](sorts/power_sort.py)
* [Quick Sort](sorts/quick_sort.py)
* [Quick Sort 3 Partition](sorts/quick_sort_3_partition.py)
* [Radix Sort](sorts/radix_sort.py)
* [Recursive Insertion Sort](sorts/recursive_insertion_sort.py)
* [Recursive Mergesort Array](sorts/recursive_mergesort_array.py)
* [Recursive Quick Sort](sorts/recursive_quick_sort.py)
* [Reverse Selection](sorts/reverse_selection.py)
* [Reversort](sorts/reversort.py)
* [Selection Sort](sorts/selection_sort.py)
* [Shell Sort](sorts/shell_sort.py)
* [Shrink Shell Sort](sorts/shrink_shell_sort.py)
* [Slowsort](sorts/slowsort.py)
* [Smoothsort](sorts/smoothsort.py)
* [Stalin Sort](sorts/stalin_sort.py)
* [Stooge Sort](sorts/stooge_sort.py)
* [Strand Sort](sorts/strand_sort.py)
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ dependencies = [
"pandas>=2.3.3",
"pillow>=11.3",
"rich>=13.9.4",
"scikit-learn>=1.9",
# https://github.com/scikit-learn/scikit-learn/issues/34898
"scikit-learn @ https://github.com/scikit-learn/scikit-learn.git ; python_version>='3.15'",
"scikit-learn>=1.9; python_version<'3.15'",
"scipy>=1.18.1",
"statsmodels>=0.14.4",
"sympy>=1.13.3",
Expand Down
Loading