Skip to content

Commit

Permalink
Bump to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 24, 2021
1 parent a6227af commit ca39d92
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [ master ]
schedule:
- cron: '0 6 * * *' # Daily 6AM UTC build


jobs:

Expand All @@ -19,10 +19,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.8
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Cache PyPI
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -93,20 +91,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.8
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
uses: py-actions/py-dependency-install@v2
with:
path: requirements-dev.txt
- name: Install twine
run: |
python -m pip install twine
python -m pip install twine wheel build
- name: Make dists
run: |
python setup.py sdist bdist_wheel
python -m build
- name: PyPI upload
env:
TWINE_USERNAME: __token__
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

0.6.2 (2021-10-24)
------------------

- Fix Python 3.10 compatibility #358

0.6.1 (2020-10-26)
------------------

Expand Down
2 changes: 1 addition & 1 deletion janus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from queue import Full as SyncQueueFull
from typing import Any, Callable, Deque, Generic, List, Optional, Set, TypeVar

__version__ = "0.6.1"
__version__ = "0.6.2"
__all__ = ("Queue", "PriorityQueue", "LifoQueue")


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def read(f):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Framework :: AsyncIO",
],
Expand Down

0 comments on commit ca39d92

Please sign in to comment.