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

Remove 3.8, Require Numpy 2.0 #483

Merged
merged 19 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',
]
)
Loading