Skip to content

Commit

Permalink
Set Explicit Versions (#84)
Browse files Browse the repository at this point in the history
* Set explicit versions for coverage and pytest

* Updates changelog
  • Loading branch information
sshookman authored Oct 2, 2019
1 parent b4dc08e commit cb8b44a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@ Documenting All Changes to the Skelebot Project

---

## v1.5.3
#### Changed
- **Dependency Versions** | Explicitly setting versions for coverage and pytest dependencies

---

## v1.5.2
#### Merged: 2019-10-01
#### Added
- **Common** | Use colorama for cross-platform colored output
- **Skelebot Main** | Use colorama for cross-platform highlighted output

---

## v1.5.1
#### Merged: 2019-10-01
#### Changed
- **Skelebot Main** | Fixes bug where the parsing of the skelebot --env param could conflict with params on jobs

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2
1.5.3
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
"artifactory==0.1.17",
"requests==2.22.0",
"schema==0.7.0",
"colorama==0.4.1",
"coverage",
"pytest"
"coverage==4.5.4",
"pytest==5.1.3",
"colorama==0.4.1"
],
install_requires=[
"PyYAML==5.1.2",
"artifactory==0.1.17",
"requests==2.22.0",
"schema==0.7.0",
"colorama==0.4.1",
"coverage",
"pytest"
"coverage==4.5.4",
"pytest==5.1.3",
"colorama==0.4.1"
],
entry_points={
'console_scripts': [
Expand Down
4 changes: 2 additions & 2 deletions skelebot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ dependencies:
- pyyaml==5.1.2
- artifactory==0.1.17
- requests==2.22.0
- coverage
- pytest
- coverage==4.5.4
- pytest==5.1.3
- schema==0.7.0
- colorama==0.4.1
ignores:
Expand Down
2 changes: 1 addition & 1 deletion test/test_systems_parsing_skeleParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_description(self):
-----------------------------------
Version: 0.1.0
Environment: test
Skelebot Version: 1.5.2
Skelebot Version: 1.5.3
-----------------------------------"""

self.assertEqual(description, expectedDescription)
Expand Down

0 comments on commit cb8b44a

Please sign in to comment.