Skip to content

Commit 5c732b2

Browse files
committed
increment version
1 parent c76a194 commit 5c732b2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/hepqpr/qallse/dsmaker/dsmaker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
import random
4444
import re
4545
from datetime import datetime
46+
from typing import Dict, Tuple
4647

4748
import click
4849
import numpy as np
@@ -68,7 +69,7 @@ def create_dataset(
6869
high_pt_cut=1.,
6970
double_hits_ok=False,
7071
gen_doublets=False,
71-
prefix=None, random_seed=None, phi_bounds=None):
72+
prefix=None, random_seed=None, phi_bounds=None) -> Tuple[Dict, str]:
7273
input_path = input_path.replace('-hits.csv', '') # just in case
7374

7475
# capture all parameters, so we can dump them to a file later

src/hepqpr/qallse/seeding/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .topology import DetectorModel
1010

1111

12-
def generate_doublets(*args, **kwargs):
12+
def generate_doublets(*args, **kwargs) -> pd.DataFrame:
1313
seeding_results = run_seeding(*args, **kwargs)
1414
doublets = structures_to_doublets(*seeding_results)
1515
doublets_df = pd.DataFrame(doublets, columns=['start', 'end']).drop_duplicates()

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name='hepqpr-qallse',
13-
version='0.0.1',
13+
version='0.1.0',
1414
author='Lucy Linder',
1515
author_email='lucy.derlin@gmail.com',
1616
description='High Energy Physics, Quantum Pattern Recognition using QUBO/D-Wave',

0 commit comments

Comments
 (0)