Skip to content

Commit

Permalink
Merge pull request #31 from 5minds/develop
Browse files Browse the repository at this point in the history
Create a new release (for current engine)
  • Loading branch information
moellenbeck authored Nov 1, 2024
2 parents e898a57 + 17fd5da commit a393d7e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
with:
python-version: 3.x

- name: Use Node.js 18.x
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

- name: Install dependencies
# "setuptools>=46.1.0" is required for "setuptools.sic()"
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
with:
python-version: 3.x

- name: Use Node.js 18.x
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

#- name: Run tests
# run: docker-compose -f docker-compose.tests.yaml up --build --exit-code-from robot
Expand Down Expand Up @@ -156,10 +156,10 @@ jobs:
with:
python-version: 3.x

- name: Use Node.js 18.x
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

- name: Install dependencies
# "setuptools>=46.1.0" is required for "setuptools.sic()"
Expand Down
3 changes: 2 additions & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
robotframework-processcube
#robotframework-processcube
robotframework-processcube-3.12.7
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM python:3
FROM python:3.12.7

ARG PROCESS_CUBE_LIBRARY_VERSION

WORKDIR /robot

RUN pip install --upgrade pip
RUN pip install --upgrade pip setuptools wheel

RUN pip install robotframework robotframework-jsonlibrary robotframework-processcube==${PROCESS_CUBE_LIBRARY_VERSION}
RUN pip install aiohttp --no-binary :all:

RUN pip install robotframework-processcube==${PROCESS_CUBE_LIBRARY_VERSION}

CMD robot **/*.robot
2 changes: 1 addition & 1 deletion ProcessCubeLibrary/docker_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def str2bool(v):

class DockerHandler:

IMAGE_NAME = '5minds/engine'
IMAGE_NAME = '5minds/processcube_engine'

def __init__(self, **kwargs):

Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
wheel==0.44.0
processcube-client==4.0.0
docker==6.1.3
#docker==6.1.3
docker==7.1.0
requests>=2.31.0
robotframework>=6.1.1
six==1.16.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setuptools.setup(
name="robotframework-processcube",
version=setuptools.sic('4.0.1'),
version=setuptools.sic('5.0.2'),
description="Robot Framework Keywords for processcube workflow engine.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a393d7e

Please sign in to comment.