Skip to content

Commit

Permalink
Merge 1853a15 into 1e01735
Browse files Browse the repository at this point in the history
  • Loading branch information
haimasree committed Mar 10, 2022
2 parents 1e01735 + 1853a15 commit 6ed7f73
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 33 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUBPAT }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install conda environment py39
python-version: '3.10'
- name: Install conda environment py310
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
activate-environment: py310
environment-file: environment.ubuntu.singularity.yml
auto-activate-base: false
- name: Install dependencies
Expand Down Expand Up @@ -62,14 +62,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUBPAT }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install conda environment py39
python-version: '3.10'
- name: Install conda environment py310
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
activate-environment: py310
environment-file: environment.ubuntu.singularity.yml
auto-activate-base: false
- name: Install dependencies
Expand All @@ -94,11 +94,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUBPAT }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install conda environment py39
python-version: '3.10'
- name: Install conda environment py310
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
Expand Down Expand Up @@ -134,14 +134,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUBPAT }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install conda environment py39
python-version: '3.10'
- name: Install conda environment py310
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
activate-environment: py310
environment-file: environment.ubuntu.singularity.yml
auto-activate-base: false
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-with-model-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install conda dependencies
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
activate-environment: py310
environment-file: environment.ubuntu.singularity.yml
auto-activate-base: false
- name: Install pip dependencies
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -47,16 +47,16 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: py39
activate-environment: py310
environment-file: environment.ubuntu.singularity.yml
python-version: 3.9
python-version: '3.10'
auto-activate-base: false
- name: Install dependencies
shell: bash -l {0}
Expand All @@ -78,10 +78,10 @@ jobs:
ZENODO_ACCESS_TOKEN: ${{ secrets.ZENODOACCESSTOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
Expand Down
5 changes: 2 additions & 3 deletions dockerfiles/environment.kipoi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ channels:
- bioconda
- defaults
dependencies:
- python=3.9
- python=3.10
- pip
- pkgconfig
- conda-forge::hdf5
- pip:
- kipoi

- git+https://github.com/kipoi/kipoi.git #TODO: Add back when kipoi when py3.10 version is available
4 changes: 2 additions & 2 deletions environment.ubuntu.singularity.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: py39
name: py310
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- pip
- singularity>=3.5
- python=3.9
- python=3.10
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"ruamel.yaml.clib",
"pandas",
"spython",
"kipoi",
"pre-commit",
"click",
]
Expand All @@ -39,7 +38,10 @@
"update_all_singularity=kipoi_containers.update_all_singularity_images:run_update",
],
},
install_requires=requirements,
install_requires=[
requirements,
"kipoi @ https://github.com/kipoi/kipoi/archive/master.tar.gz",
],
license="MIT license",
include_package_data=True,
keywords="kipoi_containers",
Expand Down

0 comments on commit 6ed7f73

Please sign in to comment.