From 856a1c73c5f00800ed85d3671f5a1ab30632e3e6 Mon Sep 17 00:00:00 2001 From: Anthony Onwuli Date: Thu, 26 Sep 2024 22:08:09 +0100 Subject: [PATCH] Bump 3.10 and update metadata --- .github/workflows/ci.yml | 2 +- setup.py | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47cc59fa..d20e89a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9","3.10","3.11","3.12"] + python-version: ["3.10","3.11","3.12"] os: [ubuntu-latest,macos-latest,windows-latest] runs-on: ${{matrix.os}} diff --git a/setup.py b/setup.py index a93d5d6a..950ef92d 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ __copyright__ = ( "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)" ) -__version__ = "2.7" +__version__ = "2.7.1" __maintainer__ = "Anthony O. Onwuli" __maintainer_email__ = "anthony.onwuli16@imperial.ac.uk" -__date__ = "August 30 2024" +__date__ = "September 26 2024" import os @@ -52,9 +52,9 @@ test_suite="smact.tests.test", install_requires=[ "scipy", - "numpy<2", + "numpy", "spglib", - "pymatgen>=2024.2.20,<2024.8.8", + "pymatgen>=2024.2.20", "ase", "pandas", "pathos", @@ -62,7 +62,6 @@ ], classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -73,5 +72,5 @@ "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Chemistry", ], - python_requires=">=3.9", + python_requires=">=3.10", )