Skip to content

Commit 999c5be

Browse files
committed
Patch bump
1 parent 89564ae commit 999c5be

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.1 (2020-07-12)
2+
++++++++++++++++++
3+
4+
* Maintenance:
5+
- Dropped 3.3 support.
6+
- Future-proofed for upcoming collections import breakage #6 (@rocky).
7+
- Upgraded test suite from nose to pytest #7 (@rocky).
8+
9+
110
1.0.0 (2015-09-02)
211
++++++++++++++++++
312

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Priority Queue Dictionary (pqdict)
33

44
A priority queue dictionary maps hashable objects (keys) to priority-determining values. It provides a hybrid dictionary/priority queue API.
55

6-
Works with Python 2.7+, 3.3+, and PyPy.
6+
Works with Python 2.7+, 3.4+, and PyPy.
77

88
.. image:: https://travis-ci.org/nvictus/priority-queue-dictionary.png?branch=master
99
:target: https://travis-ci.org/nvictus/priority-queue-dictionary

pqdict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from operator import lt, gt
4545

4646

47-
__version__ = '1.0.0'
47+
__version__ = '1.0.1'
4848
__all__ = ['pqdict', 'PQDict', 'minpq', 'maxpq', 'nlargest', 'nsmallest']
4949

5050

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
six==1.9.0
2-
nose==1.3.7
1+
six
2+
pytest

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
Programming Language :: Python :: 2
1919
Programming Language :: Python :: 2.7
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.3
2221
Programming Language :: Python :: 3.4
2322
Programming Language :: Python :: 3.5
23+
Programming Language :: Python :: 3.6
24+
Programming Language :: Python :: 3.7
25+
Programming Language :: Python :: 3.8
2426
Programming Language :: Python :: Implementation :: CPython
2527
Programming Language :: Python :: Implementation :: PyPy
2628
"""

0 commit comments

Comments
 (0)