forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 16
Fix signature #114
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
Closed
+876
−29
Closed
Fix signature #114
Changes from 24 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d52925a
feat: get all required dependencies in setup.py from issue #105
HanslettTheDev 2e7a007
feat: get all required dependencies in setup.py from issue #105
HanslettTheDev 27ef0bb
fix: improved the get_dependencies function to grab all dependency mo…
HanslettTheDev d966227
fix: improved the get_dependencies function to grab all dependency mo…
HanslettTheDev dbe2317
fix: fixed the issue with pip not detecting links
HanslettTheDev e365ff1
fix: removed the python version number in the requirements.txt file
HanslettTheDev 1fbaa0e
bump: pull request clone to fix pull #113. current commit is just the…
HanslettTheDev c1fa3b5
fix: changed version number
HanslettTheDev e7375ab
fix(tests): fixed 4 broken tests and still one pending
HanslettTheDev 147a4b9
fix: broken cryptography tests ressolved
HanslettTheDev 25f7bcd
fix: fixes the tests for python 2.7
HanslettTheDev dbf6465
still ressolving python2.7 build error
HanslettTheDev 7cd097f
still ressolving python2.7 build error part2
HanslettTheDev f1d312d
still ressolving python2.7 build error part3
HanslettTheDev 148671f
fix: removed accidentally pushed conf files
HanslettTheDev ade95f4
fix: changed the requirements.txt file to show version number
HanslettTheDev f4d20e7
fix: changed the requirements.txt file to show version number
HanslettTheDev 507cd2c
bump: crytography downgrade to 3.4.7
HanslettTheDev e5e9db1
bump: crytography downgrade to 3.4.7
HanslettTheDev ed17a5b
bump: crytography upgrade 3.4.7 -> 39.0.2
HanslettTheDev b8d1d72
feat: backward compatible code for python 2.7 to sign transactions
HanslettTheDev d180d05
feat: backward compatible code for python 2.7 to sign transactions
HanslettTheDev 5144484
Testing support for python2.7
HanslettTheDev 33bb3ab
modified the make file to add new test commands
HanslettTheDev 80a1a41
Update wsaa.py
HanslettTheDev d7fe387
fix(bump): upgraded cryptography library to work on python3+ for new …
HanslettTheDev d9f8da5
bump: cryptopgraphy upgrade from 39.0.2 -> 41.0.1
HanslettTheDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -33,3 +33,6 @@ nosetests.xml | |
| .mr.developer.cfg | ||
| .project | ||
| .pydevproject | ||
|
|
||
| # vscode settings | ||
| .vscode | ||
This file contains hidden or 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 hidden or 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,24 @@ | ||
| import os | ||
|
|
||
|
|
||
| def get_dependecies(): | ||
| blob = "git+https://github.com" | ||
| requirements_path = os.path.join( | ||
| os.path.abspath(os.getcwd()), | ||
| "requirements.txt" | ||
| ) | ||
| if os.path.isfile(requirements_path): | ||
| with open(requirements_path) as f: | ||
| dependencies = [ | ||
| ">=".join(x.split("==")) for x in f.read().splitlines() | ||
| ] | ||
| for x in dependencies: | ||
| if x.startswith(blob): | ||
| # split the text and join them with the @ command | ||
| # index 3 holds the name of the module | ||
| chunks = x.split("/") | ||
| dependencies[dependencies.index(x)] = x.replace( | ||
| blob, chunks[3] + " @ " + blob | ||
| ) | ||
| break | ||
| return dependencies |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -13,6 +13,7 @@ | |
| __copyright__ = "Copyright (C) 2008-2021 Mariano Reingart" | ||
|
|
||
| from distutils.core import setup | ||
| from get_dep import get_dependecies | ||
| import glob | ||
| import os | ||
| import subprocess | ||
|
|
@@ -70,6 +71,7 @@ | |
| author_email="[email protected]", | ||
| url="https://github.com/reingart/pyafipws", | ||
| license="LGPL-3.0-or-later", | ||
| install_requires=get_dependecies(), | ||
| options=opts, | ||
| data_files=data_files, | ||
| classifiers=[ | ||
|
|
||
780 changes: 780 additions & 0 deletions
780
tests/cassettes/test_wsmtx_recem/test_main_formato.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.