Skip to content

Commit

Permalink
Officially support Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Oct 8, 2017
1 parent fb12e70 commit 70d3ef3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SQLAlchemy transaction aware
Saved file are removed when the ongoing transaction has been rolled back.

Tested on various environments
- Python versions: Python 2.7, 3.3--3.5, PyPy_
- Python versions: Python 2.7, 3.3 or higher, PyPy_
- DBMS: PostgreSQL, MySQL, SQLite
- SQLAlchemy: 0.9 or higher (tested on 0.9 to 1.1; see CI as well)

Expand Down
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ To be released.

- Dropped Python 2.6 and 3.2 support.
- Dropped SQLAlchemy 0.8 support.
- Now became to officially support Python 3.6 (although it already has
worked well).
- Now :attr:`~sqlalchemy_imageattach.entity.Image.object_id` has a more
default implementation for :class:`~uuid.UUID` primary keys.
If a primary key is not composite and :class:`~uuid.UUID` type,
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def readme():
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Stackless',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
envlist =
# CHECK If you're going to change the list of supported Python/SQLAlchemy
# versions update .travis.yml and setup.py's classifiers as well.
{py27,py33,py34,py35,pypy}-{sqla11,sqla10,sqla9}
{py27,py33,py34,py35,py36,pypy}-{sqla11,sqla10,sqla9}
minversion = 2.7.0

[testenv]
deps =
flake8 >= 3.4.1
flake8-import-order >= 0.13
flake8-import-order-spoqa >= 1.0.1
{py27,py33,py34,py35}: https://dev.mysql.com/get/Downloads/Connector-Python/mysql-connector-python-2.1.7.tar.gz
{py27,py33,py34,py35,py36}: https://dev.mysql.com/get/Downloads/Connector-Python/mysql-connector-python-2.1.7.tar.gz
pypy: PyMySQL >= 0.7.11, < 0.8.0
pypy: psycopg2ct >= 2.4.4, < 2.5.0
{py27,py33,py34,py35}: psycopg2 >= 2.7.3.1, < 2.8.0
{py27,py33,py34,py35,py36}: psycopg2 >= 2.7.3.1, < 2.8.0
pytest >= 3.2.3, < 3.3.0
pytest-catchlog >= 1.2.2, < 1.3.0
pytest-cov >= 2.5.1, < 2.6.0
Expand Down

0 comments on commit 70d3ef3

Please sign in to comment.