Skip to content
Merged
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: 3 additions & 3 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v1
Expand All @@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip
pip install .
make devdeps
- name: Style check
run: make style
- name: Test with pytest
run: make test
- name: Style check
run: make style
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [0.3.1] 2025-07-22
- Upgraded vendored code for Python 3.12+ compatibility (#9)


## [0.3] 2022-04-08

### Added
Expand Down
5 changes: 2 additions & 3 deletions rsidx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
from rsidx import __main__
from rsidx import cli

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']


@contextmanager
Expand Down
Loading