From 31175c0053dcd2c1183227fca9c12bcc84f8f35f Mon Sep 17 00:00:00 2001 From: Mattia Campolese Date: Tue, 9 Feb 2021 10:55:57 +0000 Subject: [PATCH 1/2] Fix on dependencies version requirements --- .travis.yml | 2 +- CHANGELOG.md | 6 ++++++ requirements.txt | 6 +----- setup.py | 9 +++++---- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index b92a33a..742bcba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: python python: - - "3.6" + - "3.7" before_install: - pip install codecov - pip install pytest 'pytest-cov==2.5.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e812ef..ad35423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.1](https://github.com/matsoftware/swift-code-metrics/releases/tag/1.5.1) - 2020-02-09 + +### Fixed + +- [PR-25](https://github.com/matsoftware/swift-code-metrics/pull/24) Fix on dependencies version requirements + ## [1.5.0](https://github.com/matsoftware/swift-code-metrics/releases/tag/1.5.0) - 2020-10-06 ### Added diff --git a/requirements.txt b/requirements.txt index 68e744f..945c9b4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1 @@ -matplotlib >= 2 -adjustText < 1 -pygraphviz == 1.5 -pyfunctional == 1.2 -dataclasses == 0.7.0 \ No newline at end of file +. \ No newline at end of file diff --git a/setup.py b/setup.py index b62e61a..021a1c1 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,11 @@ long_description = fh.read() install_requires = [ - "matplotlib", - "adjustText", - "pygraphviz", - "pyfunctional" + "matplotlib >= 2", + "adjustText < 1", + "pygraphviz == 1.5", + "pyfunctional == 1.2", + "dataclasses" ] setuptools.setup( From e967edca9f3b24fdb39090a49dcfaaa262a73361 Mon Sep 17 00:00:00 2001 From: Mattia Campolese Date: Tue, 9 Feb 2021 11:21:26 +0000 Subject: [PATCH 2/2] Version bump --- CHANGELOG.md | 2 +- swift_code_metrics/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad35423..6fb2d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- [PR-25](https://github.com/matsoftware/swift-code-metrics/pull/24) Fix on dependencies version requirements +- [PR-32](https://github.com/matsoftware/swift-code-metrics/pull/32) Fix on dependencies version requirements ## [1.5.0](https://github.com/matsoftware/swift-code-metrics/releases/tag/1.5.0) - 2020-10-06 diff --git a/swift_code_metrics/version.py b/swift_code_metrics/version.py index 177b935..be684c8 100644 --- a/swift_code_metrics/version.py +++ b/swift_code_metrics/version.py @@ -1 +1 @@ -VERSION = "1.5.0" +VERSION = "1.5.1"