Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version change #19

Merged
merged 13 commits into from
Jan 26, 2024
20 changes: 10 additions & 10 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Apply formatting
uses: github/super-linter@v4
Expand All @@ -29,13 +29,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
miniforge-version: 4.9.2-4
use-mamba: true
environment-file: envs/linux.yml
use-only-tar-bz2: true
Expand All @@ -59,13 +59,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
miniforge-version: 4.9.2-4
use-mamba: true
environment-file: envs/osx.yml
use-only-tar-bz2: true
Expand All @@ -91,13 +91,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
miniforge-version: 4.9.2-4
use-mamba: true
python-version: 3.9
channels: conda-forge,bioconda
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requirements:
- openmpi
- pandas >=1.1.4
- python =3.9
- rdkit <=2022.09.1
- rdkit >=2023.09.1
- snakemake >=6.3.0
- statsmodels >=0.11.1
- xtb >=6.5.1
Expand Down
2 changes: 1 addition & 1 deletion envs/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- openmpi
- pandas >=1.1.4
- python =3.9
- rdkit <=2022.09.1
- rdkit >=2023.09.1
- snakemake >=6.3.0
- statsmodels >=0.11.1
- xtb >=6.5.1
2 changes: 1 addition & 1 deletion envs/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
- openmpi
- pandas >=1.1.4
- python =3.9
- rdkit <=2022.09.1
- rdkit >=2023.09.1
- snakemake >=6.3.0
- statsmodels >=0.11.1
- xtb >=6.5.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ joblib
numpy >= 1.19.4
# openbabel
pandas >= 1.1.4
# rdkit <= 2022.09.1
# rdkit >= 2023.09.1
snakemake >= 6.3.0
statsmodels >= 0.11.1
Loading