Skip to content

Update requirements for Python 3.8 support #469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ matrix:
python: "3.6"
- os: linux
python: "3.7"
- os: linux
python: "3.8"

install:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ h11

# Optional
httptools
uvloop
uvloop==0.14.0rc2
websockets==8.*
wsproto==0.13.*

# Testing
autoflake
black; python_version >= '3.6'
black
codecov
isort
pytest
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_packages(package):
"h11==0.8.*",
"websockets==8.*",
"httptools==0.0.13 ;" + env_marker,
"uvloop==0.* ;" + env_marker,
"uvloop==0.14.0rc2 ;" + env_marker,
]


Expand All @@ -63,7 +63,7 @@ def get_packages(package):
install_requires=requirements,
data_files = [("", ["LICENSE.md"])],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand All @@ -72,6 +72,7 @@ def get_packages(package):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down