Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow arrow v0.12.1 #210

Merged
merged 2 commits into from
Jun 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This document records all notable changes to Watson. This project adheres to
* Fixed: dependency version restrictions have been added for Watson and its
tests for continued support of older (2.7 and 3.3) Python versions
(#175, #180).
* Removed: support for Python 3.3 (#210).

## 1.6.0 (2018-04-23)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
arrow!=0.11,!=0.12
arrow!=0.11,!=0.12.0
click
requests
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def parse_requirements(requirements, ignore=('setuptools',)):
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[tox]
envlist = flake8,py27,py33,py34,py35,py36
envlist = flake8,py27,py34,py35,py36
skip_missing_interpreters = True

[testenv]
deps =
; pytest 3.3.0 dropped support for Python 3.3
py33: pytest<=3.2.5
py27,py34,py35,py36: pytest
pytest
py
mock
pytest-datafiles
Expand Down