Skip to content

Commit 436c972

Browse files
committed
Using lighted Meeko version
1 parent d8f82a3 commit 436c972

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: [ubuntu-latest, macOS-latest] #windows-latest (vina is not available for windows in conda-forge),m think about use bioconda autodock-vina
33-
python-version: [3.8, 3.9, '3.10', 3.11]
33+
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13]
3434
steps:
3535
- uses: actions/checkout@v4
3636
- name: Set up Python ${{ matrix.python-version }}

docs/source/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Fixed
1616

17+
- Meeko dependency and Python=3.12. Now we use a [simplified version of Meeko](https://github.com/ale94mleon/Meeko).
1718
- The tests no longer rely on `/tmp`; they now create temporary files in the current directory instead. This approach was already used throughout the package, except in the tests. The change makes the behavior consistent and avoids issues that occurred on certain clusters when using `/tmp`.
1819
- Prevent race condition when creating `error` directory during parallel execution.
1920

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ keywords = [
4444
"genetic algorithm",
4545
]
4646

47-
requires-python = ">= 3.8 , < 3.12"
47+
requires-python = ">= 3.8"
4848
dependencies = [
4949
"crem",
5050
"tqdm",
5151
"numpy",
5252
"pandas",
5353
"pyyaml",
5454
"dill",
55-
"meeko>=0.4.0,<0.6.0",
55+
"meeko @ git+https://github.com/ale94mleon/meeko.git@main",
56+
"scipy", # a meeko dependency
5657
"six",
5758
"rdkit>=2022.3.5",
58-
"scipy", # a meeko dependency
5959
]
6060

6161
[project.license]

0 commit comments

Comments
 (0)