Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cpburnz committed Feb 26, 2020
1 parent 828088a commit 7b295f0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Change History
==============

1.2.0 (2020-02-26)
------------------

- Require setuptools.
- Support up to Python 3.8.


1.1.2 (2018-05-04)
------------------

Expand Down
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@

import io
import re
try:
from setuptools import setup
has_setuptools = True
except ImportError:
from distutils.core import setup
has_setuptools = False

from setuptools import setup

from sqlparams import __author__, __doc__, __email__, __license__, __project__, __version__

Expand Down Expand Up @@ -43,6 +39,8 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database",
Expand All @@ -51,7 +49,6 @@
],
license=__license__,
packages=['sqlparams'],
**(dict(
test_suite='test',
) if has_setuptools else {})
python_requires=">=2.7, !=3.0.*, !=3.1.*, <3.9",
test_suite='test',
)
4 changes: 2 additions & 2 deletions sqlparams/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@
__license__ = "MIT"
__project__ = "sqlparams"
__status__ = "Production"
__updated__ = "2018-05-04"
__version__ = "1.1.2"
__updated__ = "2020-02-26"
__version__ = "1.2.0"

import collections
import re
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, py33, py34, py35, py36, pypy, pypy3
envlist = py27, py33, py34, py35, py36, py37, py38, pypy, pypy3

[testenv]
commands = python setup.py test

0 comments on commit 7b295f0

Please sign in to comment.