Skip to content

Commit

Permalink
Merge 72980da into b660d0b
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 committed Nov 24, 2018
2 parents b660d0b + 72980da commit a14d0a9
Show file tree
Hide file tree
Showing 10 changed files with 432 additions and 121 deletions.
17 changes: 8 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@ os:
# - osx
language: python
python:
# - "2.6"
# - "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies
install:
- pip install pytest --upgrade
- pip install coverage
- pip install python-coveralls
- pip install pytest-cov
- pip install -r requirements.txt
- pip install pipenv
- pipenv install --dev --deploy
# command to run tests
script:
- pwd
Expand Down
22 changes: 22 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pyyaml = ">=3.13"

[dev-packages]
flit = "*"
black = {version = "==18.9b0",markers = "python_version >= '3.6'"}
flake8 = "*"
pytest = "*"
pytest-cov = "*"
coveralls = "*"

[requires]
python_version = "3.7"

[scripts]
format = "black mass_replace tests"
reqs = "sh scripts/update_reqs.sh"
272 changes: 272 additions & 0 deletions Pipfile.lock

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

2 changes: 1 addition & 1 deletion mass_replace/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 1, 1)

__version__ = '.'.join(map(str, VERSION))
__version__ = ".".join(map(str, VERSION))
Loading

0 comments on commit a14d0a9

Please sign in to comment.