Skip to content

Commit 8178bc5

Browse files
committed
1.2.0 release #7
1 parent 861a6d2 commit 8178bc5

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="channels_auth_token_middlewares",
10-
version="1.1.0",
10+
version="1.2.0",
1111
description="Django Channels auth token middlewares",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
@@ -17,19 +17,17 @@
1717
"Development Status :: 5 - Production/Stable",
1818
"Intended Audience :: Developers",
1919
"Topic :: Software Development",
20-
"License :: OSI Approved :: Apache Software License",
20+
"License-Expression :: Apache-2.0",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.6",
2423
"Programming Language :: Python :: 3.7",
2524
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
28-
"Programming Language :: Python :: 3.11",
2927
"Programming Language :: Python :: 3 :: Only",
3028
],
3129
keywords="django channels middleware",
3230
packages=find_packages(exclude=["docs*", "tests*", "tutorial*"]),
33-
python_requires=">=3.6",
34-
install_requires=["channels>=3"],
31+
python_requires=">=3.7",
32+
install_requires=["channels>=4.0.0", "channels<4.1.0"],
3533
)

tests/app/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
# sleep 60
55
# done
66

7-
pip install -e /new_app/ --root-user-action ignore
7+
pip install -e /new_app/ --root-user-action ignore --use-pep517
88

99
python manage.py test

0 commit comments

Comments
 (0)