Skip to content

Commit

Permalink
Merge pull request #318 from AntObi/bump3.10
Browse files Browse the repository at this point in the history
Bump min python version to 3.10 and update metadata
  • Loading branch information
AntObi authored Sep 26, 2024
2 parents 62079a3 + 094abf3 commit c2f47ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ List of modules

Requirements
------------
The main language is Python 3 and has been tested using Python 3.9+.
The main language is Python 3 and has been tested using Python 3.10+.
Basic requirements are Numpy and Scipy.
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.

Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
__copyright__ = (
"Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)"
)
__version__ = "2.7"
__version__ = "2.8"
__maintainer__ = "Anthony O. Onwuli"
__maintainer_email__ = "[email protected]"
__date__ = "August 30 2024"
__date__ = "September 26 2024"


import os
Expand Down Expand Up @@ -52,17 +52,16 @@
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",
"typing-extensions",
],
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",
Expand All @@ -73,5 +72,5 @@
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
],
python_requires=">=3.9",
python_requires=">=3.10",
)

0 comments on commit c2f47ff

Please sign in to comment.