Skip to content

Commit c981927

Browse files
authored
flake cleaning + fix regression on importlib (#395)
1 parent 38fc55b commit c981927

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.0.136 (11.03.2025)
2+
- Fix regression on importlib.metadata that create an AttributeError on py<3.13
3+
4+
# 0.0.135 (10.05.2025)
5+
- Replace deprecated pkg_resources with importlib
6+
17
# 0.0.135 (10.05.2025)
28
- Replace deprecated pkg_resources with importlib
39

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyranges"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "GenomicRanges for Python."
99
readme = "README.md"
1010
authors = [{ name = "Endre Bakken Stovner", email = "endbak@pm.me" },

pyranges/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import print_function
22

3-
import importlib
3+
import importlib.metadata
44
import sys
55
from collections import defaultdict
66

tests/tutorial_doctest/test_how_to_pages.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import doctest
2-
import os
32
from pathlib import Path
43

54

0 commit comments

Comments
 (0)