Skip to content

Commit c2f47ff

Browse files
authored
Merge pull request #318 from AntObi/bump3.10
Bump min python version to 3.10 and update metadata
2 parents 62079a3 + 094abf3 commit c2f47ff

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ["3.9","3.10","3.11","3.12"]
22+
python-version: ["3.10","3.11","3.12"]
2323
os: [ubuntu-latest,macos-latest,windows-latest]
2424

2525
runs-on: ${{matrix.os}}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ List of modules
8080

8181
Requirements
8282
------------
83-
The main language is Python 3 and has been tested using Python 3.9+.
83+
The main language is Python 3 and has been tested using Python 3.10+.
8484
Basic requirements are Numpy and Scipy.
8585
The [Atomic Simulation Environment](https://wiki.fysik.dtu.dk/ase) (ASE), [spglib](http://atztogo.github.io/spglib), and [pymatgen](https://pymatgen.org) are also required for many components.
8686

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
__copyright__ = (
66
"Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)"
77
)
8-
__version__ = "2.7"
8+
__version__ = "2.8"
99
__maintainer__ = "Anthony O. Onwuli"
1010
__maintainer_email__ = "[email protected]"
11-
__date__ = "August 30 2024"
11+
__date__ = "September 26 2024"
1212

1313

1414
import os
@@ -52,17 +52,16 @@
5252
test_suite="smact.tests.test",
5353
install_requires=[
5454
"scipy",
55-
"numpy<2",
55+
"numpy",
5656
"spglib",
57-
"pymatgen>=2024.2.20,<2024.8.8",
57+
"pymatgen>=2024.2.20",
5858
"ase",
5959
"pandas",
6060
"pathos",
6161
"typing-extensions",
6262
],
6363
classifiers=[
6464
"Programming Language :: Python :: 3",
65-
"Programming Language :: Python :: 3.9",
6665
"Programming Language :: Python :: 3.10",
6766
"Programming Language :: Python :: 3.11",
6867
"Programming Language :: Python :: 3.12",
@@ -73,5 +72,5 @@
7372
"Topic :: Scientific/Engineering",
7473
"Topic :: Scientific/Engineering :: Chemistry",
7574
],
76-
python_requires=">=3.9",
75+
python_requires=">=3.10",
7776
)

0 commit comments

Comments
 (0)