Skip to content

Commit dde8609

Browse files
Change minimum Python version to 3.8
1 parent 9f15c10 commit dde8609

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
fail-fast: true
7070
matrix:
71-
python-version: ["3.7", "3.10"]
71+
python-version: ["3.8", "3.10"]
7272
fast-compile: [0]
7373
float32: [0]
7474
part:
@@ -151,7 +151,7 @@ jobs:
151151
- name: Set up Python
152152
uses: actions/setup-python@v4
153153
with:
154-
python-version: 3.7
154+
python-version: 3.8
155155

156156
- name: Install dependencies
157157
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ help:
1414

1515
conda: # Set up a conda environment for development.
1616
@printf "Creating conda environment...\n"
17-
${CONDA} create --yes --name ${PROJECT_NAME}-env python=3.7
17+
${CONDA} create --yes --name ${PROJECT_NAME}-env python=3.8
1818
( \
1919
${CONDA} activate ${PROJECT_NAME}-env; \
2020
${PIP} install -U pip; \

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: aehmc-dev
77
channels:
88
- conda-forge
99
dependencies:
10-
- python
10+
- python>=3.8
1111
- compilers
1212
- numpy>=1.18.1
1313
- scipy>=1.4.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
long_description=open("README.md").read() if exists("README.md") else "",
2525
long_description_content_type="text/markdown",
2626
zip_safe=False,
27-
python_requires=">=3.7",
27+
python_requires=">=3.8",
2828
classifiers=[
2929
"Development Status :: 4 - Beta",
3030
"Intended Audience :: Science/Research",
@@ -33,9 +33,9 @@
3333
"Operating System :: OS Independent",
3434
"Programming Language :: Python",
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 3.7",
3736
"Programming Language :: Python :: 3.8",
3837
"Programming Language :: Python :: 3.9",
38+
"Programming Language :: Python :: 3.10",
3939
"Programming Language :: Python :: Implementation :: CPython",
4040
"Programming Language :: Python :: Implementation :: PyPy",
4141
],

0 commit comments

Comments
 (0)