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

Commit

Permalink
Accept tuples as lists
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Mar 7, 2018
1 parent b4622aa commit 5386506
Show file tree
Hide file tree
Showing 7 changed files with 350 additions and 48 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision History

## 1.5.1 (2018/03/07)

- Fixed the `List` converter to accept tuples as lists.

## 1.5 (2017/10/22)

- Implemented `match` utility (credit: [@astronouth7303](https://github.com/astronouth7303)).
Expand Down
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,6 @@ install: $(DEPENDENCIES) $(METADATA)

$(DEPENDENCIES): $(PIP) Pipfile*
pipenv install --dev
ifdef WINDOWS
@ echo "Manually install pywin32: https://sourceforge.net/projects/pywin32/files/pywin32"
else ifdef MAC
$(PIP) install pync MacFSEvents
else ifdef LINUX
$(PIP) install pyinotify
endif
@ touch $@

$(METADATA): $(PIP) setup.py
Expand Down
27 changes: 21 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,35 @@ url = "https://pypi.python.org/simple"
verify_ssl = true

[dev-packages]
pylint = "~=1.7"

# Linters
pylint = "~=1.7.1"
pycodestyle = "~=2.3"
pydocstyle = "~=2.0"
pydocstyle = "~=2.0.0"

# Testing
pytest = "~=3.0.7"
pytest-describe = "==0.11.0"
pytest-expecter = "==0.2.2.post6"
pytest-cov = "*"
pytest-random = "*"
coverage = "~=4.0"
"coverage.space" = "~=0.8"

# Reports
"coverage.space" = "*"

# Documentation
mkdocs = "*"
docutils = "*"
pygments = "*"

# Build
wheel = "*"
pyinstaller = "*"

# Release
twine = "*"

# Tooling
sniffer = "*"
Pygments = "*"
PyInstaller = "*"
pync = {version = "< 2.0", sys_platform = "== 'darwin'"}
MacFSEvents = {version = "*", sys_platform = "== 'darwin'"}

0 comments on commit 5386506

Please sign in to comment.