Skip to content

Commit 7bba291

Browse files
JWittmeyerdependabot[bot]FelixKirsch
authored
release v1.1.0 (#8)
* Update LICENSE * Create dependabot.yml * Removes faulty drone trigger * Bump numpy from 1.21.0 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.0 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](numpy/numpy@v1.21.0...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * bump python to 3.9 * Bump requests from 2.13.0 to 2.28.1 Bumps [requests](https://github.com/psf/requests) from 2.13.0 to 2.28.1. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.13.0...v2.28.1) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * remove depricated library vocabulary * updates requirements, build script (#7) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Felix Kirsch <40427105+FelixKirsch@users.noreply.github.com>
1 parent 62bde2b commit 7bba291

File tree

6 files changed

+31
-10
lines changed

6 files changed

+31
-10
lines changed

.drone.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ steps:
3535
trigger:
3636
event:
3737
- push
38-
- pull_request
3938

4039
---
4140
kind: pipeline

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
# default is / which breaks drone
9+
pull-request-branch-name:
10+
separator: "-"
11+
# not created automatically for version updates so only security ones are created
12+
# https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#overriding-the-default-behavior-with-a-configuration-file
13+
open-pull-requests-limit: 0
14+

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22

33
RUN apt update && apt install -y curl
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2022 onetask.ai GmbH
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

build

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
#!/bin/bash
2+
IS_ARM64=""
3+
currentArch="$(uname -m)"
4+
if [ "$currentArch" == "arm64" ];
5+
then
6+
echo "architecture: arm64"
7+
IS_ARM64="_arm64"
8+
else
9+
echo "architecture: $currentArch"
10+
fi
211

3-
docker build -t registry.dev.onetask.ai/code-kern-ai/lf-execution-environment:dev .
12+
docker build -t registry.dev.onetask.ai/code-kern-ai/refinery-lf-exec-env:dev$IS_ARM64 .

requirements.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
numpy==1.21.0
1+
numpy==1.23.2
22
textblob==0.17.1
3-
scikit-learn==1.0.1
4-
Vocabulary==1.0.4
5-
nltk==3.6.7
6-
spacy==3.2.2
7-
requests==2.13.0
3+
scikit-learn==1.1.2
4+
nltk==3.7
5+
spacy==3.4.1
6+
requests==2.28.1

0 commit comments

Comments
 (0)