Skip to content

Commit

Permalink
Specify project url and support Python - 3.8, 3.9 and 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
anubhavp28 committed Feb 11, 2022
1 parent 2a10355 commit 8712d49
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ matrix:
env: TOXENV=py37
dist: xenial
sudo: true
- python: 3.8
env: TOXENV=py38
dist: xenial
sudo: true
- python: 3.9
env: TOXENV=py39
dist: xenial
sudo: true
- python: 3.10
env: TOXENV=py310
dist: xenial
sudo: true
- python: 2.7
env: TOXENV=pypy
- python: 2.7
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
description='Pure-Python robots.txt parser with support for modern conventions',
long_description=open("README.rst").read(),
long_description_content_type='text/markdown',
url='https://github.com/scrapy/protego',
author='Anubhav Patel',
author_email='anubhavp28@gmail.com',
license='BSD',
Expand All @@ -29,6 +30,9 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37
envlist = py27,py37,py38,py39,py310

[testenv]
deps =
Expand Down

0 comments on commit 8712d49

Please sign in to comment.