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
2 changes: 1 addition & 1 deletion .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- Intermediate FASTQ files are now bgzip compressed to reduce storage requirements (#189).
- Colons are now used instead of commas to separate SNP alleles in microhap alleles (#192).
- Implemented Python 3.12 support by integrating happer package and increasing minimum version of MicroHapDB dependency (#193).
- Updated working directory organization to provide additional structure (#194).

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ clean:

## style: check code style vs Black
style:
black --line-length=99 --check microhapulator/*.py microhapulator/*/*.py setup.py
black --line-length=99 --check microhapulator/*.py microhapulator/*/*.py microhapulator/*/*/*.py setup.py
snakefmt --line-length=99 --check microhapulator/workflows/*.smk

## format: autoformat Python code
format:
black --line-length=99 microhapulator/*.py microhapulator/*/*.py setup.py
black --line-length=99 microhapulator/*.py microhapulator/*/*.py microhapulator/*/*/*.py setup.py
snakefmt --line-length=99 microhapulator/workflows/*.smk
1 change: 1 addition & 0 deletions microhapulator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
from . import profile
from . import api
from . import cli
from . import happer
Loading