Skip to content

Commit f03f1ba

Browse files
Merge pull request #96 from databio/dev
Release 0.14.0
2 parents d626f3d + 40f2123 commit f03f1ba

18 files changed

Lines changed: 657 additions & 324 deletions

.github/workflows/black.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-python@v2
11-
- uses: psf/black@20.8b1
9+
- uses: actions/checkout@v6
10+
- uses: actions/setup-python@v6
11+
- uses: psf/black@stable

.github/workflows/cli-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
cli-coverage-report:
99
strategy:
1010
matrix:
11-
python-version: ["3.10"]
11+
python-version: ["3.12"]
1212
os: [ ubuntu-latest ] # can't use macOS when using service containers or container jobs
1313
runs-on: ${{ matrix.os }}
1414
services:
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.10'
31+
python-version: '3.12'
3232

3333
- name: Install uv
3434
run: pip install uv

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:

.github/workflows/run-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pytest:
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.12"]
15+
python-version: ["3.10", "3.13"]
1616
os: [ubuntu-latest] # can't use macOS when using service containers or container jobs
1717
runs-on: ${{ matrix.os }}
1818
services:

bbconf/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.13.0"
1+
__version__ = "0.14.0"

bbconf/bbagent.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
import logging
2+
import statistics
23
from functools import cached_property
34
from pathlib import Path
4-
from typing import List, Union, Dict
5-
import numpy as np
6-
import statistics
5+
from typing import Dict, List, Union
76

7+
import numpy as np
88
from sqlalchemy.orm import Session
9-
from sqlalchemy.sql import distinct, func, select, and_, or_
9+
from sqlalchemy.sql import and_, distinct, func, or_, select
1010

1111
from bbconf.config_parser.bedbaseconfig import BedBaseConfig
1212
from bbconf.db_utils import (
1313
Bed,
1414
BedMetadata,
1515
BedSets,
16+
BedStats,
17+
Files,
18+
GeoGsmStatus,
1619
License,
17-
UsageBedSetMeta,
1820
UsageBedMeta,
21+
UsageBedSetMeta,
1922
UsageFiles,
2023
UsageSearch,
21-
GeoGsmStatus,
22-
BedStats,
23-
Files,
2424
)
2525
from bbconf.models.base_models import (
26-
StatsReturn,
27-
UsageModel,
28-
FileStats,
29-
UsageStats,
3026
AllFilesInfo,
31-
FileInfo,
3227
BinValues,
28+
FileInfo,
29+
FileStats,
3330
GEOStatistics,
31+
StatsReturn,
32+
UsageModel,
33+
UsageStats,
3434
)
3535
from bbconf.modules.bedfiles import BedAgentBedFile
3636
from bbconf.modules.bedsets import BedAgentBedSet

0 commit comments

Comments
 (0)