-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
latest major in docker, actions. releasing most requirement constrain…
…ts. pkg_resources deprecated - move version.
- Loading branch information
Showing
6 changed files
with
21 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Dockerfile to run genmod pytest suite | ||
FROM python:3.12 | ||
FROM python:3.13 | ||
|
||
RUN mkdir -p /genmod | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
from __future__ import (print_function, absolute_import) | ||
from logging import getLogger | ||
from pkg_resources import get_distribution, DistributionNotFound | ||
from os import environ | ||
|
||
logger = getLogger(__name__) | ||
|
||
try: | ||
__version__ = get_distribution("genmod").version | ||
except DistributionNotFound as error: | ||
# Genmod is not installed (as the case for docker test suite) | ||
if 'GENMOD_DOCKER_TEST' not in environ.keys(): | ||
raise error | ||
__version__ = '-1.-1.-1' | ||
from importlib.metadata import version | ||
except ImportError: # Backport support for importlib metadata on Python 3.7 | ||
from importlib_metadata import version | ||
|
||
__version__ = version("genmod") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "3.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
ped_parser == 1.6.6 | ||
pytabix == 0.1 | ||
pytest == 7.3.1 | ||
ped_parser | ||
pytabix | ||
pytest | ||
interval_tree == 0.3.4 | ||
click == 8.1.3 | ||
configobj == 5.0.8 | ||
click | ||
configobj | ||
intervaltree == 3.1.0 | ||
extract_vcf == 0.5 | ||
vcftoolbox == 1.5.1 | ||
six == 1.16.0 | ||
extract_vcf | ||
vcftoolbox | ||
six |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters