From 465f81e783cc4d0f110839f64ca79d626d04e9ae Mon Sep 17 00:00:00 2001 From: dosisod <39638017+dosisod@users.noreply.github.com> Date: Wed, 8 Feb 2023 23:04:27 -0800 Subject: [PATCH] Remove Mypy version cap, bump packages and version: Mypy just hit version 1, so I am removing the version cap for now. If there is an issue with it later on then I'll add it back, but for now I will see how things go. --- dev-requirements.txt | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 31be509..aa00f6e 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -12,7 +12,7 @@ mypy-extensions==1.0.0 mypy==0.991 packaging==23.0 pathspec==0.11.0 -platformdirs==2.6.2 +platformdirs==3.0.0 pluggy==1.0.0 py==1.11.0 pycodestyle==2.10.0 diff --git a/pyproject.toml b/pyproject.toml index 35b073e..8a8f745 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "refurb" -version = "1.11.1" +version = "1.12.0" description = "A tool for refurbish and modernize Python codebases" authors = ["dosisod"] license = "GPL-3.0-only" @@ -17,7 +17,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.10" -mypy = ">=0.981, <=0.991" +mypy = ">=0.981" tomli = {version = "^2.0.1", python = "<3.11"} [tool.poetry.dev-dependencies]