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 change username & ignore certain exceptions #18

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ celerybeat-schedule.db
# coverage
.coverage
.coverage.*
_cov
.htmlcov

# python
__pycache__
Expand All @@ -39,4 +39,7 @@ dump.rdb
.DS_Store

# intellij
.idea/
.idea/

# wheels
pip-wheel-metadata
41 changes: 21 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
dist: xenial
language: python
# python versions
cache:
pip: true
directories:
- "$HOME/.cache/pypoetry"
matrix:
include:
- python: "2.7"
Expand All @@ -10,16 +14,8 @@ matrix:
env: CELERY_VERSION=4.1
- python: "2.7"
env: CELERY_VERSION=4.2
# - python: "3.3"
# env: CELERY_VERSION=3.1
- python: "3.4"
env: CELERY_VERSION=3.1
- python: "3.4"
env: CELERY_VERSION=4.0
- python: "3.4"
env: CELERY_VERSION=4.1
- python: "3.4"
env: CELERY_VERSION=4.2
- python: "2.7"
env: CELERY_VERSION=4.3
- python: "3.5"
env: CELERY_VERSION=3.1
- python: "3.5"
Expand All @@ -28,18 +24,23 @@ matrix:
env: CELERY_VERSION=4.1
- python: "3.5"
env: CELERY_VERSION=4.2
- python: "3.5"
env: CELERY_VERSION=4.3
- python: "3.6"
env: CELERY_VERSION=4.1
- python: "3.6"
env: CELERY_VERSION=4.2
# command to install dependencies
- python: "3.6"
env: CELERY_VERSION=4.3
- python: "3.7"
env: CELERY_VERSION=4.3
before_install:
- pip install poetry==0.12.17
install:
- pip install pytest pytest-mock pytest-cov pytest-xdist
- pip install celery==$CELERY_VERSION requests ephem
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install responses; else pip install vcrpy; fi
- pip install codecov
# command to run tests
script: pytest
# combinations to include
- env -u VIRTUAL_ENV poetry add celery==$CELERY_VERSION
- env -u VIRTUAL_ENV poetry add codecov
script:
- env -u VIRTUAL_ENV poetry run pytest
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 ]]; then (env -u VIRTUAL_ENV poetry run black --check .); fi
after_success:
- codecov
- env -u VIRTUAL_ENV poetry run codecov
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
---------------

0.4.0 (TBD)
~~~~~~~~~~~

* Drop support for Python 3.4 (requests is no longer compatible)

0.3.0 (2018-06-16)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2018 Christopher Flynn
Copyright (c) 2017-2019 Christopher Flynn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

29 changes: 0 additions & 29 deletions Pipfile

This file was deleted.

Loading