Skip to content

Commit 97a39a1

Browse files
committed
Updated setup.
1 parent e3702b3 commit 97a39a1

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ["3.8", "3.9", "3.10", "3.11"]
8+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
submodules: recursive
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: install

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = 'dscribe'
11-
version = '2.1.1'
11+
version = '2.1.2'
1212
description = 'A Python package for creating feature transformations in applications of machine learning to materials science.'
1313
readme = "README.md"
1414
license = { file = "LICENSE" }
15-
requires-python = ">=3.8"
15+
requires-python = ">=3.9"
1616
dependencies = [
1717
"numpy",
1818
"scipy",
@@ -34,10 +34,11 @@ classifiers = [
3434
"Programming Language :: C++",
3535
"Programming Language :: Python",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.7",
38-
"Programming Language :: Python :: 3.8",
3937
"Programming Language :: Python :: 3.9",
4038
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4142
"Programming Language :: Python :: 3 :: Only",
4243
]
4344
keywords = ['descriptor', 'machine learning', 'atomistic structure', 'materials science']

0 commit comments

Comments
 (0)