Skip to content

Commit 91d6a74

Browse files
committed
require at least python 3.6
1 parent 31dde10 commit 91d6a74

File tree

2 files changed

+4
-25
lines changed

2 files changed

+4
-25
lines changed

.circleci/config.yml

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ variables:
1010
name: create env
1111
command: |
1212
conda create -n kipoi-dev python=3.6
13-
create_env_py35: &create_env_py35
14-
run:
15-
name: create env
16-
command: |
17-
conda create -n kipoi-dev python=3.5
1813
install_git_lfs: &install_git_lfs
1914
run:
2015
name: Install git-lfs
@@ -82,8 +77,8 @@ variables:
8277
run:
8378
name: run coveralls
8479
command: |
85-
source activate kipoi-dev
86-
coveralls || true
80+
source activate kipoi-dev
81+
coveralls || true
8782
store_test_results: &store_test_results
8883
store_test_results:
8984
path: test-reports
@@ -113,23 +108,6 @@ jobs:
113108
- *store_test_results
114109
- *store_test_artifacts
115110

116-
test-py35:
117-
docker:
118-
- image: continuumio/miniconda3:4.5.12
119-
working_directory: ~/repo
120-
steps:
121-
- checkout
122-
- *update_conda
123-
- *create_env_py35
124-
- *update_pytorch
125-
- *install_conda_deps
126-
- *install_kipoi
127-
- *install_kipoiseq
128-
- *kipoi_ls
129-
- *run_tests
130-
- *run_coveralls
131-
- *store_test_results
132-
- *store_test_artifacts
133111

134112

135113
build-deploy-docs:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,6 @@
6060
"computational biology", "bioinformatics", "genomics"],
6161
test_suite='tests',
6262
include_package_data=False,
63-
tests_require=test_requirements
63+
tests_require=test_requirements,
64+
python_requires='>=3.6'
6465
)

0 commit comments

Comments
 (0)