Skip to content

Commit

Permalink
Python 3.9 coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Oct 20, 2020
1 parent 195a4b2 commit b7d02c6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ matrix:
python: 3.8
env: TOXENV=py38
after_success: codecov # use this version for the tests!
- name: "Python 3.9 on Linux"
dist: bionic
python: 3.9-dev
env: TOXENV=py39
- name: "Python Nightly on Linux"
dist: bionic
python: nightly
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def readme():

setup(
name='courlan',
version='0.2.2',
version='0.2.3',
description='Clean, filter, normalize, and sample URLs',
long_description=readme(),
classifiers=[
Expand All @@ -45,6 +45,7 @@ def readme():
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Filters',
Expand All @@ -55,6 +56,11 @@ def readme():
author_email='[email protected]',
license='GPLv3+',
packages=['courlan'],
project_urls={
"Source": "https://github.com/adbar/courlan",
"Coverage": "https://codecov.io/github/adbar/courlan",
"Tracker": "https://github.com/adbar/courlan/issues",
},
#package_data={},
include_package_data=True,
python_requires='>=3.4',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py34, py35, py36, py37, py38, pypy, pypy3, flake8
py34, py35, py36, py37, py38, py39, pypy, pypy3, flake8
skip_missing_interpreters =
true

Expand Down

0 comments on commit b7d02c6

Please sign in to comment.