Skip to content

Commit

Permalink
[Version] v1.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Herklos committed May 16, 2020
1 parent 2f652cd commit c05dd8d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 4 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.5.13] - 2020-05-16
### Updated
- Requirements

## [1.5.12] - 2020-05-16
### Added
- [OctoBotChannel] Add consumer
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ build: clean
.PHONY: clean
clean:
rm -rf build
rm -rf auditwheel
rm -rf dist
rm -rf .eggs
rm -rf *.egg-info
for i in $(CLEAN_EXT); do find $(EXTENSION_FOLDER) -name "$$i" -delete; done

.PHONY: debug
Expand Down
2 changes: 1 addition & 1 deletion octobot_evaluators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# License along with this library.

PROJECT_NAME = "OctoBot-Evaluators"
VERSION = "1.5.12" # major.minor.revision
VERSION = "1.5.13" # major.minor.revision
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Setup requirements
cython==0.29.17
numpy==1.18.3
numpy==1.18.4

# Drakkar-Software requirements
OctoBot-Channels>=1.4.5, <1.5
OctoBot-Commons>=1.3.30, <1.4
OctoBot-Channels>=1.4.6, <1.5
OctoBot-Commons>=1.3.31, <1.4
OctoBot-Tentacles-Manager>=2.1.3, <2.2

# Cryptocurrency trading
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import dist

dist.Distribution().fetch_build_eggs(['Cython>=0.29.17', 'numpy>=1.18.3'])
dist.Distribution().fetch_build_eggs(['Cython>=0.29.17', 'numpy>=1.18.4'])

import numpy as np

Expand Down

0 comments on commit c05dd8d

Please sign in to comment.