Skip to content

Commit c39ecd9

Browse files
authored
Merge pull request #97 from theochem/remove_python37
Removed support for Python versions less than 3.9
2 parents c89dab2 + 041a431 commit c39ecd9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/pytest.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: ["ubuntu-latest", "windows-latest"]
19-
py: ["3.7", "3.9", "3.10", "3.11"]
19+
py: ["3.9", "3.10", "3.11"]
2020

2121
steps:
2222
- uses: "actions/checkout@v3"
@@ -32,6 +32,7 @@ jobs:
3232
3333
- name: Install extra test dependencies
3434
run: |
35+
pip install --upgrade pip
3536
pip install .[test_extra]
3637
3738
- name: Run pytest default tests

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ authors = [
2525
description = "AtomDB is a database of atomic and ionic properties."
2626
readme = "README.rst"
2727
license = {text = "GPL-3.0-or-later"}
28-
requires-python = ">=3.7"
28+
requires-python = ">=3.9"
2929
classifiers = [
3030
'Development Status :: 0 - Released',
3131
'Environment :: Console',
@@ -36,8 +36,6 @@ classifiers = [
3636
'Intended Audience :: Science/Research',
3737
"Intended Audience :: Education",
3838
"Natural Language :: English",
39-
'Programming Language :: Python :: 3.7',
40-
"Programming Language :: Python :: 3.8",
4139
"Programming Language :: Python :: 3.9",
4240
"Programming Language :: Python :: 3.10",
4341
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)