We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb5ff4 commit f098efbCopy full SHA for f098efb
pyproject.toml
@@ -1,9 +1,10 @@
1
[build-system]
2
# Minimum requirements
3
requires = [
4
- "setuptools==59.2.0",
5
- "wheel==0.37.0",
6
- "Cython>=0.29.30,<3.0",
+ "setuptools>=59.2.0",
+ "wheel>=0.37.0",
+ "Cython>=0.29.30",
7
+ "packaging>=21.3"
8
]
9
10
pyslurm/__version__.py
@@ -1 +1,8 @@
+# Version is in the format: SLURM_MAJOR.PYSLURM_PATCH
+#
+# The first two Numbers "X.Y" represent the current Slurm Major release that
+# this Version of PySlurm is based on.
+# The last Number "Z" is the current Pyslurm patch version, which should be
+# incremented each time a new release is made (except when migrating to a new
+# Slurm Major release, then set it back to 0)
__version__ = "23.2.2"
0 commit comments