Commit d50c6e3 1 parent 77fef81 commit d50c6e3 Copy full SHA for d50c6e3
File tree 7 files changed +24
-13
lines changed
docs/sections/getting-started/installation
7 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 1
1
.idea
2
+ .run
2
3
.vscode
3
4
.coverage
4
5
.pytest_cache
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ## v.1.0.1
4
3
5
- - Updated ` jsonschema ` from 4.22.0 to 4.23.0
4
+ ## [ v1.0.2] ( https://github.com/AndreVale69/simulator-automatic-warehouse/releases/tag/v1.0.2 )
5
+
6
+ - Bump ` pandas ` from ` 2.2.2 ` to ` 2.2.3 `
7
+ - Bump ` PyYAML ` from ` 6.0.1 ` to ` 6.0.2 `
8
+
9
+
10
+ ------------------------------------------------------------------------------------------------------------------------
11
+
12
+
13
+ ## [ v1.0.1] ( https://github.com/AndreVale69/simulator-automatic-warehouse/releases/tag/v1.0.1 )
14
+
15
+ - Bump ` jsonschema ` from ` 4.22.0 ` to ` 4.23.0 `
6
16
7
17
8
18
------------------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ helped the creator at the beginning of the project.
56
56
57
57
| Dependency | Version |
58
58
| ------------------| --------------|
59
- | [ pandas] [ 8 ] | [ 2.2.2 ] [ 9 ] |
59
+ | [ pandas] [ 8 ] | [ 2.2.3 ] [ 9 ] |
60
60
| [ simpy] [ 10 ] | [ 4.1.1] [ 11 ] |
61
- | [ PyYAML] [ 12 ] | [ 6.0.1 ] [ 13 ] |
61
+ | [ PyYAML] [ 12 ] | [ 6.0.2 ] [ 13 ] |
62
62
| [ jsonschema] [ 14 ] | [ 4.23.0] [ 15 ] |
63
63
64
64
### Python Installation
@@ -155,11 +155,11 @@ Use the following links if the images are not displayed:
155
155
[ 6 ] : https://sbgaia.github.io/
156
156
[ 7 ] : https://www.linkedin.com/in/marco-panato-vr
157
157
[ 8 ] : https://github.com/pandas-dev/pandas
158
- [ 9 ] : https://github.com/pandas-dev/pandas/releases/tag/v2.2.2
158
+ [ 9 ] : https://github.com/pandas-dev/pandas/releases/tag/v2.2.3
159
159
[ 10 ] : https://gitlab.com/team-simpy/simpy
160
160
[ 11 ] : https://gitlab.com/team-simpy/simpy/-/tree/4.1.1?ref_type=tags
161
161
[ 12 ] : https://github.com/yaml/pyyaml
162
- [ 13 ] : https://github.com/yaml/pyyaml/releases/tag/6.0.1
162
+ [ 13 ] : https://github.com/yaml/pyyaml/releases/tag/6.0.2
163
163
[ 14 ] : https://github.com/python-jsonschema/jsonschema
164
164
[ 15 ] : https://github.com/python-jsonschema/jsonschema/releases/tag/v4.23.0
165
165
[ 16 ] : https://github.com/AndreVale69/simulator-automatic-warehouse/blob/main/configuration/sample_config.yaml
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.1 "
1
+ __version__ = "1.0.2 "
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ Dependencies
7
7
8
8
The Simulator Automatic Warehouse uses 4 dependencies:
9
9
10
- - `Pandas <https://github.com/pandas-dev/pandas >`_ (`v2.2.2 <https://github.com/pandas-dev/pandas/releases/tag/v2.2.2 >`_)
10
+ - `Pandas <https://github.com/pandas-dev/pandas >`_ (`v2.2.3 <https://github.com/pandas-dev/pandas/releases/tag/v2.2.3 >`_)
11
11
Mainly used to get the results of the simulation in a comprehensive way.
12
12
13
13
- `SimPy <https://gitlab.com/team-simpy/simpy >`_ (`4.1.1 <https://gitlab.com/team-simpy/simpy/-/tree/4.1.1?ref_type=tags >`_)
14
14
Framework used to run the simulation.
15
15
16
- - `PyYAML <https://github.com/yaml/pyyaml >`_ (`6.0.1 <https://github.com/yaml/pyyaml/releases/tag/6.0.1 >`_)
16
+ - `PyYAML <https://github.com/yaml/pyyaml >`_ (`6.0.2 <https://github.com/yaml/pyyaml/releases/tag/6.0.2 >`_)
17
17
Used to safely parse the yaml configuration file.
18
18
19
19
- `JsonSchema <https://github.com/python-jsonschema/jsonschema >`_ (`4.22.0 <https://github.com/python-jsonschema/jsonschema/releases/tag/v4.22.0 >`_)
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ classifiers = [
34
34
" Operating System :: Unix"
35
35
]
36
36
dependencies = [
37
- " pandas==2.2.2 " ,
37
+ " pandas==2.2.3 " ,
38
38
" simpy==4.1.1" ,
39
- " PyYAML==6.0.1 " ,
39
+ " PyYAML==6.0.2 " ,
40
40
" jsonschema==4.23.0"
41
41
]
42
42
Original file line number Diff line number Diff line change 1
1
# general
2
- pandas == 2.2.2
2
+ pandas == 2.2.3
3
3
4
4
# simulator
5
5
simpy == 4.1.1
6
6
numpy == 1.26.4
7
- PyYAML == 6.0.1
7
+ PyYAML == 6.0.2
8
8
jsonschema == 4.23.0
You can’t perform that action at this time.
0 commit comments