Skip to content

Commit ae3eb08

Browse files
committed
fix docs
1 parent 9fb8348 commit ae3eb08

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Below is the steps for setting up a development environment
5454
```shell
5555
git clone https://github.com/pythonpune/linkstatus
5656
cd linkstatus
57-
virtualenv .venv
57+
python -m venv .venv
5858
source .venv/bin/activate
59-
python -m pip install -Ur dev-requirements.txt
6059
python -m pip install -e .
6160
linkstatus --help
6261
```
6362

6463
# Run unit test with nox
6564
```shell
65+
python -m pip install nox
6666
nox --list # list all available sessions
6767
nox -s pre_commit # run pre-commit checks
6868
nox -s tests # run unit tests

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33

44
<p align="center">
55
<a href="https://pypi.org/project/linkstatus"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/linkstatus.svg?style=flat"></a>
6-
<a href="https://travis-ci.com/pythonpune/linkstatus"><img alt="Build Status"
7-
src="https://travis-ci.com/pythonpune/linkstatus.svg?branch=master"></a>
8-
<a href="https://github.com/pythonpune/linkstatus/blob/master/LICENSE"><img alt="License: GPLv3" src="https://img.shields.io/pypi/l/linkstatus.svg?version=latest"></a>
96
<a href="https://pypi.org/project/linkstatus/#history"><img alt="PyPI version" src="https://badge.fury.io/py/linkstatus.svg"></a>
107
<a href="https://pepy.tech/project/linkstatus"><img alt="Downloads" src="https://pepy.tech/badge/linkstatus"></a>
8+
<a href="https://codecov.io/gh/pythonpune/linkstatus"><img src="https://codecov.io/gh/pythonpune/linkstatus/branch/master/graph/badge.svg"></a>
9+
<a href="https://github.com/pythonpune/linkstatus/blob/master/LICENSE"><img alt="License: GPLv3" src="https://img.shields.io/pypi/l/linkstatus.svg?version=latest"></a>
1110
<a href="https://pypi.org/project/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
1211
</p>
1312

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def pre_commit(session):
1010
session.run("pre-commit", "run", "-a")
1111

1212

13-
@nox.session(python=["3.6", "3.7", "3.8"])
13+
@nox.session(python=["pypy3", "3.6", "3.7", "3.8"])
1414
def tests(session):
1515
"""Run unit test over different python env with code coverage"""
1616
session.install("pytest", "pytest-cov", "ruamel.yaml", "-e", ".")

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ long_description = file: README.md
2121
long_description_content_type = text/markdown
2222
classifiers =
2323
Natural Language :: English
24-
Programming Language :: Python :: 3.5
2524
Programming Language :: Python :: 3.6
2625
Programming Language :: Python :: 3.7
26+
Programming Language :: Python :: 3.8
2727
Intended Audience :: End Users/Desktop
2828
Intended Audience :: Developers
2929
Environment :: Console
30+
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
3031

3132
[options]
3233
packages = find:
@@ -37,7 +38,7 @@ install_requires =
3738
markdown
3839
requests
3940
include_package_data = True
40-
python_requires = >=3.5
41+
python_requires = >=3.6
4142

4243
[options.entry_points]
4344
console_scripts =

0 commit comments

Comments
 (0)