Skip to content

Commit cb52027

Browse files
authored
Merge pull request #71 from fossology/chor/version/bump-version
chore(atarashi): Bump version to 0.0.11 Reviewed by: [email protected] Tested by: [email protected]
2 parents 23877ee + 25f8600 commit cb52027

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ COPY . .
2626

2727
RUN mkdir wheels
2828
RUN python -m pip wheel --use-pep517 --wheel-dir wheels .
29-
RUN python -m pip wheel --use-pep517 --wheel-dir wheels code_comment@git+https://github.com/amanjain97/code_comment@master#egg=code_comment
3029

3130
FROM python:3.7-slim
3231

@@ -39,8 +38,8 @@ WORKDIR /home/atarashi
3938

4039
COPY --from=builder /atarashi/wheels/ .
4140

42-
RUN python -m pip install *.whl \
43-
&& rm *.whl
41+
RUN python -m pip install ./*.whl \
42+
&& rm ./*.whl
4443

4544
USER atarashi
4645

atarashi/atarashii.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
__author__ = "Aman Jain"
3232
__email__ = "[email protected]"
33-
__version__ = "0.0.10"
33+
__version__ = "0.0.11"
3434

3535

3636
def atarashii_runner(inputFile, processedLicense, agent_name, similarity="CosineSim", ngramJsonLoc=None, verbose=None):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def run(self):
112112

113113
metadata = dict(
114114
name = "atarashi",
115-
version = "0.0.10",
115+
version = "0.0.11",
116116
author = "Aman Jain",
117117
author_email = "[email protected]",
118118
description = ("An intelligent license scanner."),

0 commit comments

Comments
 (0)