Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
psagers committed Aug 26, 2019
1 parent 0e982fb commit ee338db
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.3.2 - (Pending) - Housekeeping
---------------------------------
v0.4.0 - August 26, 2019 - Housekeeping
---------------------------------------

Routine updates to version dependencies and test matrix, plus miscellaneous
cleanup.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3'
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.3.1'
release = '0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='django-agent-trust',
version='0.3.1',
version='0.4.0',
description="A framework for managing agent trust, such as public vs. private computers.",
author="Peter Sagerson",
author_email='[email protected]',
Expand All @@ -19,16 +19,12 @@
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
'django>=1.11',
'django >= 1.11',
],

classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ commands = {envbindir}/django-admin test test_project

[testenv:static]
basepython = python3.7
deps = django
flake8
deps = flake8
isort
skip_install = true
commands = {envbindir}/flake8 src
{envbindir}/isort -c -rc src

[testenv:coverage]
basepython = python3.7
deps = django
coverage
deps = coverage
commands = {envbindir}/coverage erase
{envbindir}/coverage run {envbindir}/django-admin test test_project
{envbindir}/coverage report

0 comments on commit ee338db

Please sign in to comment.