Skip to content

Commit e0ecf67

Browse files
JWittmeyerFelixKirschKerndependabot[bot]
authored
release v1.1.0 (#5)
* Update LICENSE * changes old service names to new ones * Create dependabot.yml * Bump numpy from 1.21.4 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.4 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.4...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 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: felix0496 <felix.kirsch@kern.ai> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0a43dde commit e0ecf67

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

.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,5 +1,5 @@
11

2-
FROM python:3.7
2+
FROM python:3.9
33

44
WORKDIR /program
55

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.

dev.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
WORKDIR /app
44

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Jinja2==3.0.2
1515
jsonschema==4.2.1
1616
MarkupSafe==2.0.1
1717
mypy-extensions==0.4.3
18-
numpy==1.21.4
18+
numpy==1.22.0
1919
pandas==1.3.4
2020
pathspec==0.9.0
2121
platformdirs==2.4.0

start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ docker run -d --rm \
1414
--name refinery-weak-supervisor \
1515
-p 7054:80 \
1616
-e POSTGRES=postgresql://postgres:onetask@graphql-postgres:5432 \
17-
-e WS_NOTIFY_ENDPOINT="http://ws-notify:8080" \
17+
-e WS_NOTIFY_ENDPOINT="http://refinery-websocket:8080" \
1818
--mount type=bind,source="$(pwd)"/,target=/app \
1919
-v /var/run/docker.sock:/var/run/docker.sock \
2020
--network dev-setup_default \

submodules/model

0 commit comments

Comments
 (0)