Skip to content

Commit

Permalink
Remove 3.8, Require Numpy 2.0 (#483)
Browse files Browse the repository at this point in the history
* Remove 3.8 Require Numpy 2.0

Co-authored-by: Stefan Stoll <[email protected]>
  • Loading branch information
HKaras and stestoll authored Sep 3, 2024
1 parent 4ae181f commit 55d4eab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The early versions of DeerLab (up to version 0.9.2) are written in MATLAB. The o

## Requirements

DeerLab is available for Windows, Mac and Linux systems and requires **Python 3.8**, **3.9**, **3.10**, or **3.11**.
DeerLab is available for Windows, Mac and Linux systems and requires **Python 3.9**, **3.10**, **3.11**, or **3.12**.

All additional dependencies are automatically downloaded and installed during the setup.

Expand Down Expand Up @@ -58,4 +58,4 @@ Here is the citation in bibtex format:

DeerLab is licensed under the [MIT License](LICENSE).

Copyright © 2019-2023: Luis Fábregas Ibáñez, Stefan Stoll, Gunnar Jeschke, and [other contributors](https://github.com/JeschkeLab/DeerLab/contributors).
Copyright © 2019-2024: Luis Fábregas Ibáñez, Stefan Stoll, Gunnar Jeschke, and [other contributors](https://github.com/JeschkeLab/DeerLab/contributors).
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
'Documentation': 'https://jeschkelab.github.io/DeerLab/',
'Source': 'https://github.com/JeschkeLab/DeerLab',
},
python_requires='>=3.8',
python_requires='>=3.9',
license='LICENSE.txt',
include_package_data = True,
keywords='data analysis modeling least-squares EPR spectroscopy DEER PELDOR'.split(),
description='Comprehensive package for data analysis of dipolar EPR spectroscopy',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
install_requires = [
'numpy>=1.22.4',
'numpy>=2.0',
'cvxopt>=1.0.0',
'scipy>=1.6.3',
'scipy>=1.11',
'joblib>=1.0.0',
'dill>=0.3.0',
'tqdm>=4.51.0',
Expand All @@ -39,10 +39,10 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Chemistry',
]
)

0 comments on commit 55d4eab

Please sign in to comment.