Skip to content

Commit 81c0665

Browse files
authored
Merge pull request #156 from pcubillos/numpy2
Numpy2
2 parents 202807f + de1a91b commit 81c0665

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222
os: [ubuntu-latest]
2323

2424
steps:

docs/get_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Getting Started
66
System Requirements
77
-------------------
88

9-
``mc3`` is compatible with Python 3.7+, and has been `tested
9+
``mc3`` is compatible with Python 3.9+, and has been `tested
1010
<https://github.com/pcubillos/mc3/actions/workflows/python-package.yml>`_ to work on Unix/Linux and OS X machines.
1111

1212
Install

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ mc3: Multi-Core Markov-Chain Monte Carlo
4040

4141
.. note::
4242

43-
Got Python3.7+? Simply install as: ``pip install mc3``
43+
Got Python3.9+? Simply install as: ``pip install mc3``
4444

4545

4646
Features

mc3/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# mc3 Version:
55
MC3_VER = 3 # Major version
6-
MC3_MIN = 1 # Minor version
7-
MC3_REV = 5 # Revision
6+
MC3_MIN = 2 # Minor version
7+
MC3_REV = 0 # Revision
88

99
__version__ = f'{MC3_VER}.{MC3_MIN}.{MC3_REV}'

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[build-system]
22
requires = [
3-
'setuptools>=40.8.0',
4-
'wheel',
5-
'oldest-supported-numpy',
3+
'setuptools',
4+
'numpy>=2.0.0',
65
]
76
build-backend = "setuptools.build_meta"
87

@@ -15,13 +14,13 @@ license = { file = "LICENSE" }
1514
#https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
1615
dynamic = ["version"]
1716

18-
requires-python = ">=3.6"
17+
requires-python = ">=3.9"
1918
authors = [
2019
{name = "Patricio Cubillos", email = "[email protected]"},
2120
]
2221

2322
dependencies = [
24-
'numpy>=1.19.5',
23+
'numpy>=1.23.5',
2524
'scipy>=1.5.4',
2625
'matplotlib>=3.3.4',
2726
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=1.19.5
1+
numpy>=1.23.5
22
scipy>=1.5.4
33
matplotlib>=3.3.4
44
pytest>=6.0

0 commit comments

Comments
 (0)