Skip to content

Commit

Permalink
Restricting python from 3.9 to <3.12 for prody limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed Oct 23, 2024
1 parent 28b4fef commit 9a7c2f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting_and_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [self-hosted]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
packages=setuptools.find_packages(exclude=['docs', 'test']),
package_data={'biobb_flexdyn': ['py.typed']},
include_package_data=True,
install_requires=['biobb_common==5.0.0'],
python_requires='>=3.9',
install_requires=['biobb_common==5.0.0', 'scipy>=1.13.0,<1.14.0'],
python_requires='>=3.9,<3.12',
entry_points={
"console_scripts": [
"concoord_dist = biobb_flexdyn.flexdyn.concoord_dist:main",
Expand Down

0 comments on commit 9a7c2f0

Please sign in to comment.