Skip to content

Commit

Permalink
Save plots to correct directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik-White committed Jun 3, 2020
1 parent 32fa00a commit 0c2eaa1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/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).

## [0.4.4] - 2020-06-03
### Fixed
- Plots are now saved to the correct directory again

## [0.4.3] - 2020-06-02
### Added
- `--version` command line argument to display installed package version number
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(*names, **kwargs):
setup(
python_requires = ">=3.7",
name = "colonyscanalyser",
version = "0.4.3",
version = "0.4.4",
description = "An image analysis tool for measuring microorganism colony growth",
long_description = long_description,
long_description_content_type = "text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/colonyscanalyser/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
DATA_DIR = "data"
OUTPUT_VERBOSE = 1
OUTPUT_PLOTS = 1
PLOTS_DIR = "data"
PLOTS_DIR = "plots"

# Runtime
MULTIPROCESSING = True
Expand Down

0 comments on commit 0c2eaa1

Please sign in to comment.