Skip to content

Commit 2c48d57

Browse files
author
moeen-n
committed
compatible with python 3.7
1 parent 34f2c79 commit 2c48d57

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
env:
1313
CC: /usr/local/opt/llvm/bin/clang
1414
CXX: /usr/local/opt/llvm/bin/clang++
15-
CIBW_BUILD: cp3[89]*
15+
CIBW_BUILD: cp3[789]*
1616
environment: TEST_PYPI_API_TOKEN
1717
strategy:
1818
fail-fast: false

.github/workflows/build_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
env:
1313
CC: /usr/local/opt/llvm/bin/clang
1414
CXX: /usr/local/opt/llvm/bin/clang++
15-
CIBW_BUILD: cp3[89]*
15+
CIBW_BUILD: cp3[789]*
1616
environment: TEST_PYPI_API_TOKEN
1717
strategy:
1818
fail-fast: false

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools>=42", 'numpy==1.22.1', 'Cython==0.29.28']
2+
requires = ["setuptools>=42", 'numpy==1.21.1', 'Cython==0.29.28']
33
build-backend = "setuptools.build_meta"

setup.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def include_dirs(self, dirs):
1919
self.__include_dirs = dirs
2020

2121
setup(name='snipar',
22-
version='0.0.7',
22+
version='0.0.8',
2323
description='Library and command line scripts for inferring identity-by-descent (IBD) segments shared between siblings, imputing missing parental genotypes, and for performing family based genome-wide association and polygenic score analyses.',
2424
long_description = long_description,
2525
long_description_content_type="text/markdown",
@@ -47,21 +47,20 @@ def include_dirs(self, dirs):
4747

4848
# Specify the Python versions you support here. In particular, ensure
4949
# that you indicate whether you support Python 2, Python 3 or both.
50-
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.7+',
5151
],
5252
keywords='statistics genetics',
5353
packages=['snipar', 'snipar.imputation', 'snipar.read', 'snipar.tests', 'snipar.example', 'snipar.scripts'],
5454
install_requires=[
55-
'numpy==1.22.1',
56-
'Cython==0.29.20',
55+
'numpy==1.21.1',
5756
'scipy==1.7.1',
5857
'bgen_reader==4.0.7',
59-
'pandas==1.4.2',
58+
'pandas==1.1.4',
6059
'pysnptools==0.5.3',
61-
'networkx==2.8',
60+
'networkx==2.5',
6261
'h5py==3.6.0',
6362
'pooch==1.5.1',
64-
'numba==0.53.1',
63+
'numba==0.55.0',
6564
'gitpython==3.1.24',
6665
'scikit-learn==1.0.2',
6766
'statsmodels==0.13.2',

0 commit comments

Comments
 (0)