From ab2064a6574348311fe37c597a021d4bf1e39499 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Thu, 29 Dec 2022 23:40:37 -0500 Subject: [PATCH] Prevent packaging 22.0 (#27) * Prevent packaging 22.0 * Update HISTORY.md --- HISTORY.md | 4 ++++ pyproject.toml | 1 + 2 files changed, 5 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 9683ce5..bda7871 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased +***Fixed:*** + +- Prevent the installation of a version of packaging that is known to be broken on macOS + ## 0.14.0 - 2022-08-28 ***Added:*** diff --git a/pyproject.toml b/pyproject.toml index 499ec0f..d70e288 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ classifiers = [ dependencies = [ "hatchling>=1.7.1", "mypy~=0.971", + "packaging!=22.0", "pathspec", "setuptools", ]