Skip to content

Commit

Permalink
Update versions of python and scipy
Browse files Browse the repository at this point in the history
  • Loading branch information
basilib committed Dec 20, 2024
1 parent 7b8126f commit a591a7c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install GCC, GFortran, and OpenBLAS
- name: Install OpenBLAS
run: |
sudo apt-get update
sudo apt-get install -y libopenblas-dev
Expand Down Expand Up @@ -82,6 +82,10 @@ jobs:
with:
python-version: 3.9
cache: 'pip'
- name: Install OpenBLAS
run: |
sudo apt-get update
sudo apt-get install -y libopenblas-dev
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
Expand All @@ -28,17 +28,18 @@ classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: C",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"numpy>=1.19.0",
"scipy>=1.1.0,<=1.10.0",
"scipy>=1.1.0,",
"h5py>=2.7",
"cvxpy>=1.1",
"pyscf @ git+https://github.com/pyscf/pyscf@master",
Expand Down Expand Up @@ -121,10 +122,11 @@ markers = [
[tool.black]
line-length = 120
target-version = [
"py38",
"py39",
"py310",
"py311",
"py312",
"py313",
]
include="\\.py"
extend-exclude = """
Expand Down

0 comments on commit a591a7c

Please sign in to comment.