From f5eb691d0571ca6f091cb1b51e8690ca98d83a86 Mon Sep 17 00:00:00 2001 From: Lanqing Yuan Date: Mon, 30 Oct 2023 17:52:58 -0500 Subject: [PATCH 1/2] bump --- .bumpversion.cfg | 2 +- .singularity_inner | 20 ++++++++++++++++++++ admix/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) create mode 100755 .singularity_inner diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b5e958..782a899 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.12 +current_version = 1.0.13 files = setup.py admix/__init__.py commit = True tag = True diff --git a/.singularity_inner b/.singularity_inner new file mode 100755 index 0000000..5760d1e --- /dev/null +++ b/.singularity_inner @@ -0,0 +1,20 @@ +#!/bin/bash +JUP_HOST=$(hostname -i) +## print tunneling instructions +echo -e " + Copy/Paste this in your local terminal to ssh tunnel with remote + ----------------------------------------------------------------- + ssh -N -f -L localhost:17377:$JUP_HOST:17377 yuanlq@midway3.rcc.uchicago.edu + ----------------------------------------------------------------- + + Then open a browser on your local machine to the following address + ------------------------------------------------------------------ + localhost:17377 + ------------------------------------------------------------------ + and use the token that appears below to login. + + OR replace "" in the address below with "localhost" and copy + to your local browser. + " 2>&1 + +jupyter lab --no-browser --port=17377 --ip=$JUP_HOST --notebook-dir /home/yuanlq 2>&1 diff --git a/admix/__init__.py b/admix/__init__.py index f15ea48..7702664 100644 --- a/admix/__init__.py +++ b/admix/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Top-level package for aDMIX.""" -__version__ = '1.0.12' +__version__ = '1.0.13' import os import logging diff --git a/setup.py b/setup.py index 92552d0..2cb44a7 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='xe-admix', - version='1.0.12', + version='1.0.13', description="advanced Data Management In Xenon (aDMIX)", long_description=readme + '\n\n' + history, url='https://github.com/XENON1T/admix', From 8d612e6f8598ebeb8ce51761ea2414e3725f821a Mon Sep 17 00:00:00 2001 From: Lanqing Yuan Date: Mon, 30 Oct 2023 17:57:29 -0500 Subject: [PATCH 2/2] removed trash --- .singularity_inner | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 .singularity_inner diff --git a/.singularity_inner b/.singularity_inner deleted file mode 100755 index 5760d1e..0000000 --- a/.singularity_inner +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -JUP_HOST=$(hostname -i) -## print tunneling instructions -echo -e " - Copy/Paste this in your local terminal to ssh tunnel with remote - ----------------------------------------------------------------- - ssh -N -f -L localhost:17377:$JUP_HOST:17377 yuanlq@midway3.rcc.uchicago.edu - ----------------------------------------------------------------- - - Then open a browser on your local machine to the following address - ------------------------------------------------------------------ - localhost:17377 - ------------------------------------------------------------------ - and use the token that appears below to login. - - OR replace "" in the address below with "localhost" and copy - to your local browser. - " 2>&1 - -jupyter lab --no-browser --port=17377 --ip=$JUP_HOST --notebook-dir /home/yuanlq 2>&1