Skip to content

Commit

Permalink
Merge pull request #32 from matsoftware/fix-requirements
Browse files Browse the repository at this point in the history
Fix on dependencies version requirements
  • Loading branch information
matsoftware authored Feb 9, 2021
2 parents 8e089e7 + e967edc commit eb86c56
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
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"

0 comments on commit eb86c56

Please sign in to comment.