From cd724c213224583bff5e78cc63221ecec769c317 Mon Sep 17 00:00:00 2001 From: olliemath Date: Fri, 20 Aug 2021 14:08:17 +0100 Subject: [PATCH] Tooling: unpin requirements --- CHANGELOG.md | 4 ++++ pyproject.toml | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb8958..d4110e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log ========== +v2.2.2 +------ +- Unpined requirements to enhance compatability + v2.2.1 ------ - Minor tooling changes for PyPI diff --git a/pyproject.toml b/pyproject.toml index 8b74e1a..093a67b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ line_length = 120 [tool.poetry] name = "clickhouse_orm" -version = "2.2.1" +version = "2.2.2" description = "A simple ORM for working with the Clickhouse database. Maintainance fork of infi.clickhouse_orm." authors = ["olliemath "] license = "BSD" @@ -33,9 +33,9 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.6.2,<4" -requests = "^2.26.0" -pytz = "^2021.1" -iso8601 = "^0.1.16" +requests = "*" +pytz = "*" +iso8601 = "*" [tool.poetry.dev-dependencies] flake8 = "^3.9.2"