Skip to content

Commit

Permalink
Fixed: Added missing install dependency Colorama
Browse files Browse the repository at this point in the history
  • Loading branch information
w-kuipers committed Sep 13, 2023
1 parent cccfe69 commit 51a78ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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.0.1]
### Fixed
- Colorama dependency was missing.

## [1.0.0]
### Fixed
- Dependencies will now be automatically installed.
Expand All @@ -12,5 +16,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Progressbar
- Success message

[1.0.1]: https://github.com/w-kuipers/python-project-minify/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/w-kuipers/python-project-minify/compare/v0.0.2...v1.0.0
[0.0.2]: https://github.com/w-kuipers/python-project-minify/releases/tag/v0.0.2
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
python-minifier
tqdm
tqdm
colorama
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="python-project-minify",
version="1.0.0",
version="1.0.1",
author="Wibo Kuipers",
author_email="w.kuipers@filmage.nl",
description="A quick way to compile your Python project into it's most compact form. Built on the great python-minify package.",
Expand All @@ -26,5 +26,5 @@
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires=['python-minifier', 'tqdm'],
install_requires=['python-minifier==2.9.0', 'tqdm==4.66.1', 'colorama==0.4.6'],
)
2 changes: 1 addition & 1 deletion src/python_project_minify/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
try:
__version__ = get_distribution('python_project_minify').version
except DistributionNotFound:
__version__ = '1.0.0'
__version__ = '1.0.1'

def main():

Expand Down

0 comments on commit 51a78ba

Please sign in to comment.