Skip to content

Commit 8dc2be3

Browse files
committed
1.1.3 - specify python_requires=">=3.6"
1 parent 4eb7844 commit 8dc2be3

File tree

6 files changed

+15
-2
lines changed

6 files changed

+15
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ build: clean
1616

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

2121
.PHONY: clean
2222
clean:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# [s3recon](https://s3recon.readthedocs.io/en/latest/)
22

33
[![PyPi release](https://img.shields.io/pypi/v/s3recon.svg)](https://pypi.org/project/s3recon/)
4+
[![PyPi versions](https://img.shields.io/pypi/pyversions/s3recon.svg)](https://pypi.org/project/s3recon/)
45
[![Downloads](https://pepy.tech/badge/s3recon)](https://pepy.tech/project/s3recon)
56
[![Documentation Status](https://readthedocs.org/projects/s3recon/badge/?version=latest)](https://s3recon.readthedocs.io/en/latest/?badge=latest)
67

docs/source/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Version |version|
1313
.. image:: https://img.shields.io/pypi/v/s3recon.svg
1414
:target: https://pypi.org/project/s3recon/
1515
16+
.. image:: https://img.shields.io/pypi/pyversions/s3recon.svg
17+
:target: https://pypi.org/project/s3recon/
18+
1619
.. image:: https://pepy.tech/badge/s3recon
1720
:target: https://pepy.tech/project/s3recon
1821

s3recon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.2"
1+
__version__ = "1.1.3"

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ def open_local(paths, mode="r", encoding="utf8"):
2626
long_description_content_type="text/markdown",
2727
url="https://github.com/clarketm/s3recon",
2828
packages=setuptools.find_packages(),
29+
python_requires=">=3.6",
2930
include_package_data=True,
3031
install_requires=install_requires,
3132
entry_points={"console_scripts": ["s3recon=s3recon.s3recon:cli"]},
3233
classifiers=(
3334
"Programming Language :: Python :: 3",
35+
"Programming Language :: Python :: 3.6",
36+
"Programming Language :: Python :: 3.7",
3437
"License :: OSI Approved :: MIT License",
3538
"Operating System :: OS Independent",
3639
),

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[tox]
2+
envlist = py36,py37
3+
4+
[testenv]
5+
deps = pytest
6+
commands = pytest

0 commit comments

Comments
 (0)