-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix uplink with Python 2.7 * Switch on six.moves.collections_abc * Add abc in __all__ * Add link to GitHub Discussions for repo in README * Update "Question" GitHub issue template * Fix @uplink.*Map to not throw error if converter is None Fixes #221 * Fix B018 flake error Flake is failing with "B018 Found useless expression." https://app.travis-ci.com/github/prkumar/uplink/jobs/553555288 * Add 3.9 and 3.10.1 to travis build (#239) * Add 3.9 and 3.10 to travis build * Replace 3.10 with 3.10-dev * Update travis to use Ubuntu 18.04 18.04 has 3.10.0 and 3.10.1 according to: https://docs.travis-ci.com/user/languages/python/ * Bump python 3.10 to 3.10.1 in travis * Unpin pytest version Travis build for 3.10.1 failed because of issue in pytest that was fixed in a later release: pytest-dev/pytest#8540 * Fix uplink with Python 2.7 * Switch on six.moves.collections_abc * Add abc in __all__ * Add python 2.7 to travis build * Omit "keywords" attribute when invoking setup for py2.7 Context: pypa/pipenv#4357 (comment) * Pin pipenv==2018.11.26 for py2.7 travis build Context: pypa/pipenv#4357 (comment) * Fix syntax error in travis config file * Try pinning pipenv version in tox.ini * Make integration tests work with py2.7 * Make integration tests work with py2.7 * Fix flake8 E231 error Co-authored-by: P. Raj Kumar <raj.pritvi.kumar@gmail.com> Co-authored-by: Alexander Shadchinr <shadchin@users.noreply.github.com>
- Loading branch information
1 parent
418bc54
commit a660529
Showing
14 changed files
with
23 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
repos: | ||
- repo: https://github.com/ambv/black | ||
rev: 18.6b4 | ||
rev: 21.12b0 | ||
hooks: | ||
- id: black | ||
python-version: python3.6 | ||
python-version: python3.8 | ||
files: ^((uplink|examples|tests)\/.+|setup|docs\/conf)\.py$ | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v1.3.0 | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: '4.0.1' | ||
hooks: | ||
- id: flake8 | ||
name: flake8 | ||
python-version: python3.6 | ||
python-version: python3.8 | ||
files: ^((uplink|examples|tests)\/.+|setup|docs\/conf)\.py$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
language: python | ||
dist: bionic # Ubuntu 18.04 | ||
python: | ||
- '2.7' | ||
- '3.5' | ||
- '3.6' | ||
- '3.7' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Third-party imports | ||
import six | ||
|
||
__all__ = ["reraise"] | ||
__all__ = ["abc", "reraise"] | ||
|
||
abc = six.moves.collections_abc | ||
reraise = six.reraise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters