Skip to content

Commit

Permalink
Merge pull request #97 from theochem/remove_python37
Browse files Browse the repository at this point in the history
Removed support for Python versions less than 3.9
  • Loading branch information
marco-2023 authored May 15, 2024
2 parents c89dab2 + 041a431 commit c39ecd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
py: ["3.7", "3.9", "3.10", "3.11"]
py: ["3.9", "3.10", "3.11"]

steps:
- uses: "actions/checkout@v3"
Expand All @@ -32,6 +32,7 @@ jobs:
- name: Install extra test dependencies
run: |
pip install --upgrade pip
pip install .[test_extra]
- name: Run pytest default tests
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ authors = [
description = "AtomDB is a database of atomic and ionic properties."
readme = "README.rst"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.7"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 0 - Released',
'Environment :: Console',
Expand All @@ -36,8 +36,6 @@ classifiers = [
'Intended Audience :: Science/Research',
"Intended Audience :: Education",
"Natural Language :: English",
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit c39ecd9

Please sign in to comment.