Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Graves committed May 24, 2017
1 parent 6ace995 commit fd34250
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
16 changes: 8 additions & 8 deletions Pipfile
Expand Up @@ -2,14 +2,6 @@
verify_ssl = true
url = "https://pypi.python.org/simple"

[dev-packages]
bumpversion = "*"
coveralls = "*"
pytest = "*"
pytest-cov = "*"
requests-mock = "*"
mock = "*"

[packages]
arrow = "*"
bagit = "*"
Expand All @@ -20,3 +12,11 @@ pyshp = "*"
requests = "*"
GeoAlchemy2 = "*"
PlyPlus = "*"

[dev-packages]
bumpversion = "*"
coveralls = "*"
pytest = "*"
pytest-cov = "*"
requests-mock = "*"
mock = "*"
16 changes: 8 additions & 8 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions tests/test_record.py
@@ -1,5 +1,4 @@
import arrow
from slingshot.parsers import FGDCParser

from slingshot.record import (
geometry_mapper,
Expand Down Expand Up @@ -27,8 +26,8 @@ def test_mit_record_defaults_to_now_for_modified_time():
now = arrow.utcnow()
r = MitRecord()
assert r.layer_modified_dt is not None
assert now.replace(minutes=-1) < arrow.get(r.layer_modified_dt) < \
now.replace(minutes=+1)
assert now.shift(minutes=-1) < arrow.get(r.layer_modified_dt) < \
now.shift(minutes=+1)


def test_mit_record_formats_datetime():
Expand Down

0 comments on commit fd34250

Please sign in to comment.