Skip to content
This repository has been archived by the owner on Oct 3, 2019. It is now read-only.

Commit

Permalink
Temporarily disable cyclic import check (R0401)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jul 17, 2015
1 parent a9a074c commit c802d5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
@@ -1,5 +1,9 @@
# Revision History

## 0.5 (unreleased)

- Renamed `yorm.base` to `yorm.bases`.

## 0.4.1 (2015-06/19)

- Fixed attribute loss in non-`dict` when conversion to `dict`.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -174,7 +174,7 @@ pep257: depends-ci

.PHONY: pylint
pylint: depends-ci
$(PYLINT) $(PACKAGE) --rcfile=.pylintrc --disable=R0912,C0111
$(PYLINT) $(PACKAGE) --rcfile=.pylintrc --disable=R0912,C0111,R0401

.PHONY: fix
fix: depends-dev
Expand Down
2 changes: 1 addition & 1 deletion yorm/__init__.py
Expand Up @@ -3,7 +3,7 @@
import sys

__project__ = 'YORM'
__version__ = '0.4.1'
__version__ = '0.5da1'

VERSION = __project__ + '-' + __version__

Expand Down

0 comments on commit c802d5a

Please sign in to comment.