-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ignore pycharm files * run tests on 3.7 to 3.10, use new circleci images * try installing libxml deps and setting compiler flags don't install deps already preset, bump lxml instead downgrade lxml * delete travis.yml * delete tox.ini * run tests with pytest instead * add lintlizard step * run lintlizard --fix (black + isort) * remove basestring reference * add annotation for COMPILED_PATTERNS * ignore line length linter error * import stuff explicilty when testing * fix imports * fix bad escapes for regex string * remove (object) inheritance * C416 swap useless list comprehensions for list * E711 comparison to None * SFS101 string literal formatting * fix docstring imperative mood and spacing * SIM102 flatten needlessly nested if statements * remove enumerate where the index is never used * D301 use r""" if there's any backslashes in the docstring * replace bytestring formatting with no formatting. bytes arent strings, so they can just be dirty then * remove unused variable * SIM104 use yield from instead * drop python 2 tags in setup.py * add dependabot config * Fix isort config * Bump pytest from 7.1.1 to 7.1.2 (#33) * Bump lxml from 4.6.5 to 4.9.1 Bumps [lxml](https://github.com/lxml/lxml) from 4.6.5 to 4.9.1. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](lxml/lxml@lxml-4.6.5...lxml-4.9.1) --- updated-dependencies: - dependency-name: lxml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Build against system libxml2 * Bump pytest from 7.1.2 to 7.1.3 (#37) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alec Rosenbaum <[email protected]> Co-authored-by: Vyacheslav Tverskoy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Vyacheslav Tverskoy <[email protected]> Co-authored-by: V <[email protected]>
- Loading branch information
1 parent
c2d71fa
commit 6044dde
Showing
14 changed files
with
1,249 additions
and
810 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Docs: https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Enable version updates for python | ||
- package-ecosystem: "pip" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 8 # note that this is _per-file_ | ||
directory: "/" | ||
pull-request-branch-name: | ||
# so it's compatible with docker tags | ||
separator: "-" |
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 |
---|---|---|
|
@@ -25,3 +25,6 @@ pip-log.txt | |
|
||
#Mr Developer | ||
.mr.developer.cfg | ||
|
||
# pycharm | ||
.idea |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[tool.black] | ||
target-version = ['py37'] | ||
exclude = ''' | ||
/( | ||
\.git | ||
| \.venv | ||
| venv | ||
| src | ||
)/ | ||
''' |
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
Oops, something went wrong.