Skip to content

Commit

Permalink
PyPI v0.6.6: Added version pinning for dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
janik6n committed Jan 30, 2020
1 parent c7f661d commit c89fdce
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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).

## [0.6.6] - 2020-01-30

### Added

### Changed

### Removed

### Fixed

- Added version pinning for dependencies.

## [0.6.5] - 2019-08-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion jetzt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.5'
__version__ = '0.6.6'
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bullet
click
colorama
bullet>=2.1.0,<3.0.0
Click>=7.0,<8.0
colorama>=0.3.9,<=0.4.3
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
AUTHOR = 'Jani Karhunen'
REQUIRES_PYTHON = '>=3.6.0'

REQUIRED = ['bullet', 'click', 'colorama']
REQUIRED = ['Click>=7.0,<8.0',
'bullet>=2.1.0,<3.0.0',
'colorama>=0.3.9,<=0.4.3']

# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
Expand Down

0 comments on commit c89fdce

Please sign in to comment.