New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

scriptflow

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scriptflow - pypi Package Compare versions

Comparing version
0.2.8
to
0.2.9
+3
-6
PKG-INFO
Metadata-Version: 2.3
Name: scriptflow
Version: 0.2.8
Version: 0.2.9
Summary: Like a makefile but in python, a stripped-down system of Airflow or Luigi

@@ -30,3 +30,3 @@ Author: Thibaut Lamadon

[![CircleCI](https://circleci.com/gh/tlamadon/scriptflow/tree/main.svg?style=svg)](https://circleci.com/gh/tlamadon/scriptflow/tree/main) [![PyPI version](https://badge.fury.io/py/scriptflow.svg)](https://badge.fury.io/py/scriptflow) [![codecov](https://codecov.io/gh/tlamadon/scriptflow/branch/main/graph/badge.svg?token=0E8J7635HD)](https://codecov.io/gh/tlamadon/scriptflow)
[![Testing](https://github.com/tlamadon/scriptflow/actions/workflows/tests.yml/badge.svg)](https://github.com/tlamadon/scriptflow/actions/workflows/tests.yml) [![PyPI version](https://badge.fury.io/py/scriptflow.svg)](https://badge.fury.io/py/scriptflow) [![codecov](https://codecov.io/gh/tlamadon/scriptflow/branch/main/graph/badge.svg?token=0E8J7635HD)](https://codecov.io/gh/tlamadon/scriptflow)

@@ -180,5 +180,2 @@ Small library that allows scheduling scripts asyncrhonously on different platforms. Think of it as a Make when you can write the dependencies as python code, and that can run locally, on an HPC or in the cloud (cloud is not implemented just yet).

### Docker images to try the different schedulers

@@ -188,3 +185,3 @@

- [slurm](https://medium.com/analytics-vidhya/slurm-cluster-with-docker-9f242deee601)
=======
[tool.poetry]
name = "scriptflow"
version = "0.2.8"
version = "0.2.9"
description = "Like a makefile but in python, a stripped-down system of Airflow or Luigi"

@@ -41,2 +41,2 @@ authors = ["Thibaut Lamadon <thibaut.lamadon@gmail.com>"]

"tests"
]
]
# scriptflow
[![CircleCI](https://circleci.com/gh/tlamadon/scriptflow/tree/main.svg?style=svg)](https://circleci.com/gh/tlamadon/scriptflow/tree/main) [![PyPI version](https://badge.fury.io/py/scriptflow.svg)](https://badge.fury.io/py/scriptflow) [![codecov](https://codecov.io/gh/tlamadon/scriptflow/branch/main/graph/badge.svg?token=0E8J7635HD)](https://codecov.io/gh/tlamadon/scriptflow)
[![Testing](https://github.com/tlamadon/scriptflow/actions/workflows/tests.yml/badge.svg)](https://github.com/tlamadon/scriptflow/actions/workflows/tests.yml) [![PyPI version](https://badge.fury.io/py/scriptflow.svg)](https://badge.fury.io/py/scriptflow) [![codecov](https://codecov.io/gh/tlamadon/scriptflow/branch/main/graph/badge.svg?token=0E8J7635HD)](https://codecov.io/gh/tlamadon/scriptflow)

@@ -152,5 +152,2 @@ Small library that allows scheduling scripts asyncrhonously on different platforms. Think of it as a Make when you can write the dependencies as python code, and that can run locally, on an HPC or in the cloud (cloud is not implemented just yet).

### Docker images to try the different schedulers

@@ -160,2 +157,2 @@

- [slurm](https://medium.com/analytics-vidhya/slurm-cluster-with-docker-9f242deee601)
=======

@@ -168,4 +168,4 @@ """

for k in to_remove:
del self.processes[k]
controller.add_completed( p["job"] )
proc = self.processes.pop(k)
controller.add_completed(proc["job"])

@@ -277,2 +277,2 @@ async def loop(self,controller):

"slurm": HpcRunner_slurm,
}
}