salabim 24.0.3.1__tar.gz → 24.0.4.post0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. {salabim-24.0.3.1 → salabim-24.0.4.post0}/PKG-INFO +2 -2
  2. {salabim-24.0.3.1 → salabim-24.0.4.post0}/pyproject.toml +2 -2
  3. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/changelog.txt +11 -4
  4. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/salabim.py +6 -6
  5. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim.egg-info/PKG-INFO +2 -2
  6. {salabim-24.0.3.1 → salabim-24.0.4.post0}/README.md +0 -0
  7. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/DejaVuSansMono.ttf +0 -0
  8. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/LICENSE.txt +0 -0
  9. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/calibri.ttf +0 -0
  10. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim/mplus-1m-regular.ttf +0 -0
  11. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim.egg-info/SOURCES.txt +0 -0
  12. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim.egg-info/dependency_links.txt +0 -0
  13. {salabim-24.0.3.1 → salabim-24.0.4.post0}/salabim.egg-info/top_level.txt +0 -0
  14. {salabim-24.0.3.1 → salabim-24.0.4.post0}/setup.cfg +0 -0
  15. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_cap_now.py +0 -0
  16. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_componentgenerator.py +0 -0
  17. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_datetime.py +0 -0
  18. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_distributions.py +0 -0
  19. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_misc.py +0 -0
  20. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_monitor.py +0 -0
  21. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_process.py +0 -0
  22. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_queue.py +0 -0
  23. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_salabim.py +0 -0
  24. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_state.py +0 -0
  25. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_store.py +0 -0
  26. {salabim-24.0.3.1 → salabim-24.0.4.post0}/tests/test_timeunit.py +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: salabim
3
- Version: 24.0.3.1
3
+ Version: 24.0.4.post0
4
4
  Summary: salabim - discrete event simulation in Python
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
- Project-URL: Homepage, https://github.com/salabim/salabim
6
+ Project-URL: Homepage, https://salabim.org
7
7
  Project-URL: Repository, https://github.com/salabim/salabim
8
8
  Classifier: Development Status :: 5 - Production/Stable
9
9
  Classifier: License :: OSI Approved :: MIT License
@@ -8,7 +8,7 @@ authors = [
8
8
  {name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
9
9
  ]
10
10
  description = "salabim - discrete event simulation in Python"
11
- version = "24.0.3.1"
11
+ version = "24.0.4-0"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.7"
14
14
  dependencies = [
@@ -19,7 +19,7 @@ classifiers = [
19
19
  "Programming Language :: Python :: 3 :: Only"
20
20
  ]
21
21
  [project.urls]
22
- Homepage = "https://github.com/salabim/salabim"
22
+ Homepage = "https://salabim.org"
23
23
  Repository = "https://github.com/salabim/salabim"
24
24
 
25
25
 
@@ -1,15 +1,22 @@
1
1
  salabim changelog
2
2
 
3
- version 24.0.3 2024-05-01
3
+ version 24.0.4 2024-05-03
4
4
  ==========================
5
+ Although there's no functional change, this is a major upgrade,
6
+ that could result in bugs or unexpected behaviour.
7
+ Please report any bug or problem.
8
+
5
9
  Internal organization completely changed. Now uses git for version
6
- control.
10
+ control. That means that it is much easier for the developer
11
+ to push new versions.
12
+
13
+ And for publishing on PyPI salabim now uses a pyproject.toml file.
14
+ This also makes publishing easier for the developer.
7
15
 
8
16
  Changed the styling of the salabim logo, which will be visible on the
9
- website,readme, manual.
17
+ website, readme, manual.
10
18
  Also the Environment.modelname() method now shows the new styling.
11
19
 
12
-
13
20
  version 24.0.2 2024-03-15
14
21
  ==========================
15
22
  Added functionality (0)
@@ -1,13 +1,13 @@
1
- # _ _ _ ____ _ _ ___ _____
2
- # ___ __ _ | | __ _ | |__ (_) _ __ ___ |___ \ | || | / _ \ |___ /
3
- # / __| / _` || | / _` || '_ \ | || '_ ` _ \ __) || || |_ | | | | |_ \
4
- # \__ \| (_| || || (_| || |_) || || | | | | | / __/ |__ _| _ | |_| | _ ___) |
5
- # |___/ \__,_||_| \__,_||_.__/ |_||_| |_| |_| |_____| |_| (_) \___/ (_)|____/
1
+ # _ _ _ ____ _ _ ___ _ _
2
+ # ___ __ _ | | __ _ | |__ (_) _ __ ___ |___ \ | || | / _ \ | || |
3
+ # / __| / _` || | / _` || '_ \ | || '_ ` _ \ __) || || |_ | | | | | || |_
4
+ # \__ \| (_| || || (_| || |_) || || | | | | | / __/ |__ _| _ | |_| | _ |__ _|
5
+ # |___/ \__,_||_| \__,_||_.__/ |_||_| |_| |_| |_____| |_| (_) \___/ (_) |_|
6
6
  # discrete event simulation
7
7
  #
8
8
  # see www.salabim.org for more information, the documentation and license information
9
9
 
10
- __version__ = "24.0.3"
10
+ __version__ = "24.0.4"
11
11
 
12
12
  import heapq
13
13
  import random
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: salabim
3
- Version: 24.0.3.1
3
+ Version: 24.0.4.post0
4
4
  Summary: salabim - discrete event simulation in Python
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
- Project-URL: Homepage, https://github.com/salabim/salabim
6
+ Project-URL: Homepage, https://salabim.org
7
7
  Project-URL: Repository, https://github.com/salabim/salabim
8
8
  Classifier: Development Status :: 5 - Production/Stable
9
9
  Classifier: License :: OSI Approved :: MIT License
File without changes
File without changes