Skip to content

Commit

Permalink
Fix Travis Issue with pipenv (#39)
Browse files Browse the repository at this point in the history
* pin python-dateutil version for travis

* update Pipefile.lock

* move dateutil-2.8.1 to setup.py

* fix linter issues

* update pip in travis

* remove python_requires from pipefile

* remove pandas version limit

* remove testing in travis for python >= 3.8

* remove python version
  • Loading branch information
Shlomi Hod committed Nov 22, 2019
1 parent b350d8e commit badecb3
Show file tree
Hide file tree
Showing 6 changed files with 389 additions and 355 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -7,8 +7,8 @@ python:
- "3.6-dev" # 3.6 development branch
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.8 development branch
- "nightly" # nightly build
# - "3.8-dev" # 3.8 development branch
# - "nightly" # nightly build

cache:
pip: true
Expand All @@ -22,6 +22,7 @@ env:

before_install:
- "sudo apt-get install python3-tk"
- pip install --upgrade pip
- pip install pipenv
- make doctor

Expand Down
9 changes: 6 additions & 3 deletions Pipfile
Expand Up @@ -3,9 +3,6 @@ url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[requires]
python_version = "3.5"

[packages]
responsibly = {editable = true,path = "."}

Expand All @@ -17,27 +14,33 @@ pycodestyle = "*"
pep8 = "*"
pydocstyle = "*"
restructuredtext_lint = "*"

# Testing
pytest = "~= 3.3"
pytest-describe = "*"
pytest-expecter = "*"
pytest-random = "*"
pytest-cov = "*"
freezegun = "*"

# Reports
coverage-space = "*"

# Documentation
sphinx = "*"
nbconvert = "*"
docutils = "*"
pygments = "*"

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

# Release
setuptools = ">= 38.6.0"
twine = ">= 1.11.0"

# Tooling
jupyter = "*"
notebook = ">=5.7.8"
Expand Down

0 comments on commit badecb3

Please sign in to comment.