Skip to content

Commit

Permalink
Improve setup.py a bit (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
tazend committed Dec 11, 2023
1 parent bfb5ff4 commit f098efb
Show file tree
Hide file tree
Showing 3 changed files with 168 additions and 179 deletions.
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
# Minimum requirements
requires = [
"setuptools==59.2.0",
"wheel==0.37.0",
"Cython>=0.29.30,<3.0",
"setuptools>=59.2.0",
"wheel>=0.37.0",
"Cython>=0.29.30",
"packaging>=21.3"
]


Expand Down
7 changes: 7 additions & 0 deletions pyslurm/__version__.py
Original file line number Diff line number Diff line change
@@ -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"
Loading

0 comments on commit f098efb

Please sign in to comment.