Skip to content

Commit

Permalink
Remove support for 3.8, add for 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
adrybakov committed Oct 15, 2024
1 parent 4b1b831 commit bb344d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ on:
branches: [ main]

jobs:
test-38:
uses: adrybakov/wulfric/.github/workflows/tests.yml@main
with:
python-version: '3.8'

test-39:
uses: adrybakov/wulfric/.github/workflows/tests.yml@main
Expand All @@ -31,3 +27,7 @@ jobs:
uses: adrybakov/wulfric/.github/workflows/tests.yml@main
with:
python-version: '3.12'
test-313:
uses: adrybakov/wulfric/.github/workflows/tests.yml@main
with:
python-version: '3.13'
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installation

Requirement for Wulfric installation are:

* Python (>=3.8)
* Python (>=3.9)
* NumPy (~=1.26)
* SciPy
* termcolor
Expand Down
4 changes: 2 additions & 2 deletions docs/source/user-guide/start/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Installation

Requirement for Wulfric installation are:

* |Python|_ (>=3.8)
* |NumPy|_
* |Python|_ (>=3.9)
* |NumPy|_ (~=1.26)
* |SciPy|_
* |termcolor|_
* |matplotlib|_ (optional: [visual])
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ dynamic = ["version"]
description = "Crystal, Lattice, Atoms, K-path."
dependencies = ["numpy~=1.26", "scipy", "termcolor"]
authors = [{ name = "Andrey Rybakov", email = "[email protected]" }]
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.rst"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
Expand Down

0 comments on commit bb344d6

Please sign in to comment.