Skip to content

Commit

Permalink
Merge branch 'rl-2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Nov 1, 2024
2 parents 4b6974b + fb5710c commit 349af12
Show file tree
Hide file tree
Showing 7 changed files with 487 additions and 471 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
tests:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu]
fail-fast: true
runs-on: ${{ matrix.os }}-latest
Expand All @@ -31,10 +31,5 @@ jobs:
run: |
make build USE_CYTHON=1
make ci SKIP_STYLE=true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: true
- name: Run pytest benchmark
run: pytest benchmark/test_pybmoore.py
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python 3.12.1
python 3.13.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Python/Cython implementation of [Boyer-Moore string-search algorithm](https://en

## Installing

Install and update using pip:
Install and update using uv:

````bash
pip install pybmoore
uv pip install pybmoore
````

> notice: `gcc` must be available on the system.
Expand Down
2 changes: 1 addition & 1 deletion pybmoore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
except ModuleNotFoundError:
raise RuntimeError("Failed to load _bm module.")

__version__ = "2.0.0"
__version__ = "2.0.1"
__all__ = ["search", "search_m", "__version__"]
Loading

0 comments on commit 349af12

Please sign in to comment.