Skip to content

Commit

Permalink
Bumped mimimum Python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bjmorgan committed Jun 21, 2024
1 parent 6e5348b commit 690f6e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ omit =
*/site-packages/ordereddict.py
*/site-packages/nose/*
*/unittest2/*
docs
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.7','3.8','3.9','3.10','3.11','3.12']
python-version: ['3.9','3.10','3.11','3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
pytest tests/integration_tests
pytest tests/notebook_tests
pytest tests/unit_tests --cov=bsym --cov-report xml
pytest tests/unit_tests --cov-config=.coveragerc --cov=bsym --cov-report lcov
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'install_requires': ['numpy',
'pymatgen',
'tqdm'],
'python_requires': '>=3.7',
'python_requires': '>=3.9',
'license': 'MIT',
'packages': ['bsym', 'bsym.interface'],
'scripts': [],
Expand Down

0 comments on commit 690f6e0

Please sign in to comment.