Skip to content

Commit

Permalink
1.1.3 - 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 4eb7844 commit 8dc2be3
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build: clean

.PHONY: test
test:
python -m nose2 --start-dir . --with-coverage --coverage-report "term" --coverage-report "html"
@echo "not implemented"

.PHONY: clean
clean:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# [s3recon](https://s3recon.readthedocs.io/en/latest/)

[![PyPi release](https://img.shields.io/pypi/v/s3recon.svg)](https://pypi.org/project/s3recon/)
[![PyPi versions](https://img.shields.io/pypi/pyversions/s3recon.svg)](https://pypi.org/project/s3recon/)
[![Downloads](https://pepy.tech/badge/s3recon)](https://pepy.tech/project/s3recon)
[![Documentation Status](https://readthedocs.org/projects/s3recon/badge/?version=latest)](https://s3recon.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 @@ -13,6 +13,9 @@ Version |version|
.. image:: https://img.shields.io/pypi/v/s3recon.svg
:target: https://pypi.org/project/s3recon/
.. image:: https://img.shields.io/pypi/pyversions/s3recon.svg
:target: https://pypi.org/project/s3recon/
.. image:: https://pepy.tech/badge/s3recon
:target: https://pepy.tech/project/s3recon
Expand Down
2 changes: 1 addition & 1 deletion s3recon/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.2"
__version__ = "1.1.3"
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ def open_local(paths, mode="r", encoding="utf8"):
long_description_content_type="text/markdown",
url="https://github.com/clarketm/s3recon",
packages=setuptools.find_packages(),
python_requires=">=3.6",
include_package_data=True,
install_requires=install_requires,
entry_points={"console_scripts": ["s3recon=s3recon.s3recon: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",
),
Expand Down
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

0 comments on commit 8dc2be3

Please sign in to comment.