Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python

python:
- "3.6"
- "3.7"
before_install:
- pip install codecov
- pip install pytest 'pytest-cov==2.5.0'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-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

### Added
Expand Down
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
matplotlib >= 2
adjustText < 1
pygraphviz == 1.5
pyfunctional == 1.2
dataclasses == 0.7.0
.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion swift_code_metrics/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.5.0"
VERSION = "1.5.1"