Skip to content

Commit f098efb

Browse files
authored
Improve setup.py a bit (#328)
1 parent bfb5ff4 commit f098efb

File tree

3 files changed

+168
-179
lines changed

3 files changed

+168
-179
lines changed

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[build-system]
22
# Minimum requirements
33
requires = [
4-
"setuptools==59.2.0",
5-
"wheel==0.37.0",
6-
"Cython>=0.29.30,<3.0",
4+
"setuptools>=59.2.0",
5+
"wheel>=0.37.0",
6+
"Cython>=0.29.30",
7+
"packaging>=21.3"
78
]
89

910

pyslurm/__version__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
# Version is in the format: SLURM_MAJOR.PYSLURM_PATCH
2+
#
3+
# The first two Numbers "X.Y" represent the current Slurm Major release that
4+
# this Version of PySlurm is based on.
5+
# The last Number "Z" is the current Pyslurm patch version, which should be
6+
# incremented each time a new release is made (except when migrating to a new
7+
# Slurm Major release, then set it back to 0)
18
__version__ = "23.2.2"

0 commit comments

Comments
 (0)