Skip to content

Commit

Permalink
Add support for Python 3.6.
Browse files Browse the repository at this point in the history
In fact, this makes all the tests be run under Python 3.6. If the tests succeed, we assume there is support for Python 3.6

Closes FactoryBoy#358
  • Loading branch information
mbaechtold committed Apr 7, 2017
1 parent 23dbafa commit 0d6de18
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ matrix:
env: TOXENV=py34-django110-alchemy10-mongoengine010
- python: "3.5"
env: TOXENV=py35-django110-alchemy10-mongoengine010
- python: "3.6"
env: TOXENV=py36-django110-alchemy10-mongoengine010

# Pypy
- python: "pypy"
env: TOXENV=py27-django110-alchemy10-mongoengine010

# Linting
- python: "3.5"
- python: "3.6"
env: TOXENV=examples
- python: "3.5"
- python: "3.6"
env: TOXENV=lint

services:
Expand Down
1 change: 1 addition & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The project has received contributions from (in alphabetical order):
* Luke GB <github@lukegb.com>
* Marc Abramowitz <marc@marc-abramowitz.com>
* Mark Sandstrom <mark@deliciouslynerdy.com>
* Martin Bächtold <martin+factoryboy@baechtold.me> (https://github.com/mbaechtold)
* Michael Joseph <michaeljoseph+github@gmail.com>
* Mikhail Korobov <kmike84@gmail.com>
* Oleg Pidsadnyi <oleg.pidsadnyi@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Links
* Package: https://pypi.python.org/pypi/factory_boy/
* Mailing-list: `factoryboy@googlegroups.com <mailto:factoryboy@googlegroups.com>`_ | https://groups.google.com/forum/#!forum/factoryboy

factory_boy supports Python 2.7, 3.2 to 3.5, as well as PyPy; it requires only the standard Python library.
factory_boy supports Python 2.7, 3.2 to 3.6, as well as PyPy; it requires only the standard Python library.


Download
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def get_version(package_name):
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{27,34,35}-django{17,18,19,110}-alchemy10-mongoengine010
py{27,34,35,36}-django{17,18,19,110}-alchemy10-mongoengine010
examples
lint

Expand Down

0 comments on commit 0d6de18

Please sign in to comment.