Skip to content

Commit

Permalink
1.1.2 - specify python_requires=">=3.6"
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed Feb 11, 2019
1 parent d22d06b commit e26114b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# [wait-for-it](https://wait-for-it.readthedocs.io/en/latest/)

[![PyPi release](https://img.shields.io/pypi/v/wait-for-it.svg)](https://pypi.org/project/wait-for-it/)
[![PyPi versions](https://img.shields.io/pypi/pyversions/wait-for-it.svg)](https://pypi.org/project/wait-for-it/)
[![Downloads](https://pepy.tech/badge/wait-for-it)](https://pepy.tech/project/wait-for-it)
[![Documentation Status](https://readthedocs.org/projects/wait-for-it/badge/?version=latest)](https://wait-for-it.readthedocs.io/en/latest/?badge=latest)

Expand Down
3 changes: 3 additions & 0 deletions docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Version |version|
.. image:: https://img.shields.io/pypi/v/wait-for-it.svg
:target: https://pypi.org/project/wait-for-it/
.. image:: https://img.shields.io/pypi/pyversions/wait-for-it.svg
:target: https://pypi.org/project/wait-for-it/
.. image:: https://pepy.tech/badge/wait-for-it
:target: https://pepy.tech/project/wait-for-it
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
long_description_content_type="text/markdown",
url="https://github.com/clarketm/wait-for-it",
packages=setuptools.find_packages(),
python_requires=">=3.6",
py_modules=["wait_for_it"],
install_requires=["click"],
entry_points={"console_scripts": ["wait-for-it=wait_for_it.wait_for_it:cli"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX",
],
)
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py36,py37

[testenv]
deps = pytest
commands = pytest
2 changes: 1 addition & 1 deletion wait_for_it/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.1"
__version__ = "1.1.2"

0 comments on commit e26114b

Please sign in to comment.