From b7a2cd77e9d7e12a4e06e9b0d2f9bcba64c5b446 Mon Sep 17 00:00:00 2001 From: Kieran W <41634689+FredHappyface@users.noreply.github.com> Date: Sat, 30 Mar 2024 16:00:00 +0000 Subject: [PATCH] support latest numpy + networkx (used by colormath) --- .github/workflows/test-lint.yaml | 1 - CHANGELOG.md | 4 ++++ pyproject.toml | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-lint.yaml b/.github/workflows/test-lint.yaml index f753a28..41b25d7 100644 --- a/.github/workflows/test-lint.yaml +++ b/.github/workflows/test-lint.yaml @@ -16,7 +16,6 @@ jobs: strategy: matrix: python-version: - - '3.8' - '3.9' - '3.10' - '3.11' diff --git a/CHANGELOG.md b/CHANGELOG.md index f6bd640..18ebcf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All major and minor version changes will be documented in this file. Details of patch-level version changes can be found in [commit messages](../../commits/master). +## 2024.2 - 2014/03/30 + +- support latest numpy + networkx (used by colormath) + ## 2024.1 - 2024/03/17 - code improvements diff --git a/pyproject.toml b/pyproject.toml index 0288a40..26a2bd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "colourswatch" -version = "2024.1" +version = "2024.2" license = "mit" description = "Use this module to read, and write to a number of colour palette file formats" authors = ["FredHappyface"] @@ -21,7 +21,7 @@ documentation = "https://github.com/FHPythonUtils/ColourSwatch/blob/master/READM readme = "README.md" [tool.poetry.dependencies] -python = ">=3.8,<4.0" +python = ">=3.9,<4.0" colormath = "<4,>=3.0.0" PyYAML = "<7,>=6.0.1" defusedxml = "<2,>=0.7.1" @@ -35,7 +35,7 @@ pytest = "^8.1.1" handsdown = "^2.1.0" coverage = "^7.4.4" ruff = "^0.3.3" -pyright = "^1.1.354" +pyright = "^1.1.356" [build-system] requires = ["poetry-core"]