Skip to content

Commit 31175c0

Browse files
committed
Fix on dependencies version requirements
1 parent 8e089e7 commit 31175c0

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22

33
python:
4-
- "3.6"
4+
- "3.7"
55
before_install:
66
- pip install codecov
77
- pip install pytest 'pytest-cov==2.5.0'

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.1](https://github.com/matsoftware/swift-code-metrics/releases/tag/1.5.1) - 2020-02-09
9+
10+
### Fixed
11+
12+
- [PR-25](https://github.com/matsoftware/swift-code-metrics/pull/24) Fix on dependencies version requirements
13+
814
## [1.5.0](https://github.com/matsoftware/swift-code-metrics/releases/tag/1.5.0) - 2020-10-06
915

1016
### Added

requirements.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
matplotlib >= 2
2-
adjustText < 1
3-
pygraphviz == 1.5
4-
pyfunctional == 1.2
5-
dataclasses == 0.7.0
1+
.

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
long_description = fh.read()
66

77
install_requires = [
8-
"matplotlib",
9-
"adjustText",
10-
"pygraphviz",
11-
"pyfunctional"
8+
"matplotlib >= 2",
9+
"adjustText < 1",
10+
"pygraphviz == 1.5",
11+
"pyfunctional == 1.2",
12+
"dataclasses"
1213
]
1314

1415
setuptools.setup(

0 commit comments

Comments
 (0)