Skip to content

Commit

Permalink
Support Python 3.10 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Oct 16, 2021
1 parent 8c0dbaf commit 194f334
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,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 @@ -76,7 +74,7 @@ jobs:
needs: [lint]
strategy:
matrix:
pyver: [3.6, 3.7, 3.8, 3.9]
pyver: ['3.6', '3.7', '3.8', '3.9', '3.10']
os: [ubuntu, macos, windows]
include:
- pyver: pypy3
Expand Down Expand Up @@ -138,18 +136,16 @@ 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
run:
python -m pip install -U pip wheel
- name: Make dists
run:
python setup.py sdist bdist_wheel
- name: Release
uses: aio-libs/create-release@master
uses: aio-libs/create-release@v1.2.2
with:
changes_file: CHANGES.rst
name: aiosignal
Expand Down
10 changes: 9 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,17 @@ Changelog

.. towncrier release notes start
1.1.3a2 (2020-12-23)
1.2.0a0 (2021-10-16)
====================

Features
--------

- Added support for Python 3.10.
`#328 <https://github.com/aio-libs/aiosignal/issues/328>`_


Bugfixes
--------

Expand Down
2 changes: 1 addition & 1 deletion aiosignal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from frozenlist import FrozenList

__version__ = "1.1.3a2"
__version__ = "1.2.0a0"

__all__ = ("Signal",)

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def read(f):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
Expand Down
2 changes: 1 addition & 1 deletion tools/check_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main(argv):
if fname.name in (".gitignore", ".TEMPLATE.rst", "README.rst"):
continue
if fname.suffix == ".rst":
test_name = fname.stem
test_name = Path(fname.stem)
else:
test_name = fname
if test_name.suffix not in ALLOWED_SUFFIXES:
Expand Down

0 comments on commit 194f334

Please sign in to comment.