Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replace pkg_resources for python 3.12 #2831

Merged
merged 2 commits into from Apr 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions snakemake/utils.py
Expand Up @@ -468,10 +468,10 @@ def read_job_properties(

def min_version(version):
"""Require minimum snakemake version, raise workflow error if not met."""
import pkg_resources
from packaging.version import parse
from snakemake.common import __version__

if pkg_resources.parse_version(__version__) < pkg_resources.parse_version(version):
if parse(__version__) < parse(version):
raise WorkflowError(
"Expecting Snakemake version {} or higher (you are currently using {}).".format(
version, __version__
Expand Down