Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

casymda

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

casymda - pypi Package Compare versions

Comparing version
0.2.24
to
0.2.25
+7
-1
PKG-INFO
Metadata-Version: 2.1
Name: casymda
Version: 0.2.24
Version: 0.2.25
Summary: A simple DES modeling and simulation environment based on simpy, camunda modeler, and tkinter / pixi.js;

@@ -134,2 +134,8 @@ Home-page: https://github.com/fladdimir/casymda

### PyPy3
Tested PyPy3 (7.3.1-final). Install pypy3 pypy3-dev pypy-tk.
Runtime could be decreased by factor ~2 when using PyPy3 for longer simulations runs (e.g. from ~45s to ~25s for a [simple example model test](examples/basics/model/long_run_bpmn_example_test.py) with MAX_ENTITIES set to 40.000 on an i5 notebook).
## Contact

@@ -136,0 +142,0 @@

+2
-2

@@ -5,3 +5,3 @@ """setuptools setup"""

VERSION = "0.2.24"
VERSION = "0.2.25"

@@ -33,3 +33,3 @@ try:

"flask-cors",
"black",
"black==19.3b0",
"numpy",

@@ -36,0 +36,0 @@ "networkx",

Metadata-Version: 2.1
Name: casymda
Version: 0.2.24
Version: 0.2.25
Summary: A simple DES modeling and simulation environment based on simpy, camunda modeler, and tkinter / pixi.js;

@@ -134,2 +134,8 @@ Home-page: https://github.com/fladdimir/casymda

### PyPy3
Tested PyPy3 (7.3.1-final). Install pypy3 pypy3-dev pypy-tk.
Runtime could be decreased by factor ~2 when using PyPy3 for longer simulations runs (e.g. from ~45s to ~25s for a [simple example model test](examples/basics/model/long_run_bpmn_example_test.py) with MAX_ENTITIES set to 40.000 on an i5 notebook).
## Contact

@@ -136,0 +142,0 @@

@@ -1,8 +0,8 @@

simpy
xmltodict
Pillow
black==19.3b0
flask
flask-cors
black
networkx
numpy
networkx
simpy
xmltodict

@@ -1,1 +0,1 @@

__version__ = "0.2.24"
__version__ = "0.2.25"
""" entity """
from typing import List, Optional
from simpy import Environment, Resource
from simpy import Environment, Resource, Process

@@ -13,3 +13,3 @@

self.name = name
self.current_process = None
self.current_process: Optional[Process] = None

@@ -16,0 +16,0 @@ # requested resources, info needed for release

@@ -5,3 +5,3 @@ import os

import casymda.blocks.tilemap.tilemap_nx as tmnx
from . import tilemap_nx as tmnx

@@ -8,0 +8,0 @@ MATRIX_CACHE = "_temp_matrix.pickle"

@@ -7,3 +7,3 @@ import math

from casymda.blocks.block_components import VisualizableBlock
from casymda.blocks.tilemap.coordinates_holder import CoordinatesHolder
from .coordinates_holder import CoordinatesHolder
from casymda.blocks.tilemap.segment import Segment

@@ -10,0 +10,0 @@ from casymda.environments.realtime_environment import (