Merge tag '0.3.2' into develop
0.3.2 ------------------ - Fixed an issue in the main dockerfile
This commit is contained in:
commit
8ad33786ed
|
@ -1,10 +1,17 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
0.3.2 (Unreleased)
|
||||
|
||||
0.3.3 (Unreleased)
|
||||
------------------
|
||||
|
||||
|
||||
0.3.2
|
||||
------------------
|
||||
|
||||
- Fixed an issue in the main dockerfile
|
||||
|
||||
|
||||
0.3.1
|
||||
------------------
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ ENV PYTHONUNBUFFERED 1
|
|||
COPY ./requirements.apt /requirements.apt
|
||||
RUN apt-get update -qq && grep "^[^#;]" requirements.apt | xargs apt-get install -y
|
||||
RUN curl -L https://github.com/acoustid/chromaprint/releases/download/v1.4.2/chromaprint-fpcalc-1.4.2-linux-x86_64.tar.gz | tar -xz -C /usr/local/bin --strip 1
|
||||
RUN fcalc yolofkjdssdhf
|
||||
COPY ./requirements/base.txt /requirements/base.txt
|
||||
RUN pip install -r /requirements/base.txt
|
||||
COPY ./requirements/production.txt /requirements/production.txt
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
__version__ = '0.3.1'
|
||||
__version__ = '0.3.2'
|
||||
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
|
||||
|
|
Loading…
Reference in New Issue