All notable changes to this project will be documented in this file.
-
Address queue server bugs when changing the number of servers (#77)
- Make sure we correctly handle queueing when the number of servers changes for the
QueueServer
(fixes #64). - Update the requirements file for building the documentation.
- Update the javascript files included in the documentation.
- Make sure we correctly handle queueing when the number of servers changes for the
-
Address issues related to newer versions of dependencies (#75)
- Move CI over from travis-ci to Github actions. Test python versions 3.6-3.10.
- Use poetry for package management.
- Make sure queueing-tool works with updated dependencies (fixes #74).
- Address warnings after python version and dependency updates.
- Use the
collections.deque.clear()
method in theQueueNetwork.clear()
function, (addresses #68).
- Use pyproject.toml for all build and test related configuration (#79)
- Move build metadata from
setup.py
topyproject.toml
. - Move pytest settings from
setup.cfg
topyproject.toml
. - Use
importlib.metadata
for setting the package version. - Remove the version file.
- Move build metadata from
- Update documentation for QueueServer attributes (#78)
- Clarified the documentation of
QueueServer.num_arrivals
andQueueServer.num_system
(addresses #65). - Setup a
CHANGELOG.md
file.
- Clarified the documentation of
- Networkx nodes update (#61)
- Use nodes instead of node, the latter is removed as of networkx 2.4
- Update readthedocs v2 (#59)
- Use python 3.6 with RTD
- Change the copy in the README
- Update readthedocs (#58)
- Update the installlation documentation
- Update alabaster version for docs
- Updates for python 3.6 and 3.7 (#56)
- Update the supported versions of python
- Various non-breaking changes to ensure consistent results across versions of python
- Add support for matplotlib 2 and 3 (#52)
- Add matrix of tests for matplotlib versions
- Remove verbal support for python version 3.3
- [breaking] Better testing (#45)
- Code quality cleanup
- Linted the files. Some docstring copy edits. Removed deepcopy implementation.
- Remove unused imports
- Renamed am image file, and added another image file for testing matplotlib 2.x
- Updated the graph object to work with networkx 1.x and 2.x
-
[breaking] QueueServer fixes (#44)
- Removed lowerCammelCase variables.
- Moved
QueueServer
time updates into a_update_time
functoin. - Minor
QueueNetwork.animation
code clean-up.
-
Added some shields, switched to using pytest (#43)
- [breaking] Pythonic names (#39)
- Updated un-pythonic attributions and parameters
- Removed lambda functions in examples and docstrings
- Updated tests to use more specific checks
- [breaking] Modify random measure (#36)
- Changed order of arguments for poisson_random_measure
- Added priority queue to available package objects
- PriorityQueue c changes
- Updated the version, added PyPi info to README
- Fix rtfd (#34)
- Edited
conf.py
so that it can be installed in python 2 - Add documentation packages to the requirements
- Fixed annoying readthedocs bug
- Edited
- Code quality changes (#33)
- Minor code quality changes (#32)
- Doc changes (#30)
- Better testing (#29)
- Relaxed the numpy and networkx dependency requirements.
- Added coloring parameter to QueueServer.
- Fixed a sorting bug that occurred under Blocking After Service. It was solved by adding a small random number to a blocked agent's next time. This implies that the first agent blocked will not necessarily be the next agent to enter the queue when it is no longer at capacity.
Improved efficiency of the GreedyAgent routing; it's now about 10 times faster.
- Fixed installation typo in the docs.
- Updated installation docs.
-
[breaking] Modified various functions. Better simulation for QueueServer.
QueueNetwork
- Changed the name of the
collect_data
method tostart_collecting_data
. - Changed the
time
attribute to tract the time of next event. - Added a
current_time
attribute.
QueueServer
- Changed the
simulate
method to exit when no new events are scheduled. - The
fetch_data
method now sorts the entries by arrival time.
- Changed the name of the
-
Made blocking attribute undeletable
- Initial release