Skip to content

Commit

Permalink
Advertise Python 3.9 Support (#30)
Browse files Browse the repository at this point in the history
.travis.yml still needs to be updated once travis-ci support 3.9....will remain testing against 3.9-dev for now.
  • Loading branch information
rmartin16 authored Oct 7, 2020
1 parent 9e89209 commit e4a52ed
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@ addons:
branch_pattern: coverity_scan
python:
- 2.7
#- 3.4 # not supported on bionic
# - 3.4 - not available on travis-ci
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- 3.9-dev # remove once 3.9 is supported on travis-ci
- 3.9
- 3.10-dev
- pypy3
- nightly
- pypy3.6-7.3.1
jobs:
fast_finish: true
allow_failures:
- python: 3.9-dev
- python: 3.9 # remove once 3.9 is supported on travis-ci
- python: 3.10-dev
- python: pypy3
- python: nightly
- python: pypy3.6-7.3.1
exclude:
- if: branch != comprehensive_tests AND env(QBT_VER) != env(LATEST_QBT_VERSION)
env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 2020.10.10
- Advertise support for Python 3.9

Version 2020.9.9
- Only request enum34 for Python 2

Expand Down
4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
include AUTHORS.rst
include CHANGELOG.txt
include CONTRIBUTING.rst
include LICENSE
include README.rst
include README.md

global-exclude *.py[cod] __pycache__ *.so
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='qbittorrent-api',
version='2020.9.9',
version='2020.10.10',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
include_package_data=True,
install_requires=['attrdict>=2.0.0',
Expand All @@ -18,10 +18,11 @@
description='Python client for qBittorrent v4.1+ Web API',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='qbittorrent api',
keywords='python qbittorrent api client torrent torrents',
zip_safe=False,
license='GPL-3',
classifiers=['Programming Language :: Python :: 3.8',
classifiers=['Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
Expand Down

0 comments on commit e4a52ed

Please sign in to comment.