Skip to content

Commit 3f9b12b

Browse files
bump: pull request clone to fix pull PyAr#113. current commit is just the clone of the pycon commit
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: changed version number Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix(tests): fixed 4 broken tests and still one pending Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: broken cryptography tests ressolved Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: fixes the tests for python 2.7 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> still ressolving python2.7 build error Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> still ressolving python2.7 build error part2 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> still ressolving python2.7 build error part3 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: removed accidentally pushed conf files Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: changed the requirements.txt file to show version number Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> fix: changed the requirements.txt file to show version number Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> bump: crytography downgrade to 3.4.7 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> bump: crytography downgrade to 3.4.7 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> bump: crytography upgrade 3.4.7 -> 39.0.2 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> feat: backward compatible code for python 2.7 to sign transactions Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> feat: backward compatible code for python 2.7 to sign transactions Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> Testing support for python2.7 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> modified the make file to add new test commands Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> Update wsaa.py Co-authored-by: Nico Sandoval <49107024+NicolasSandoval@users.noreply.github.com> Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com> feat: Backward compatible code to sign certificates for python 2.7 and python 3+
1 parent 56db255 commit 3f9b12b

4 files changed

Lines changed: 849 additions & 29 deletions

File tree

Makefile

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ test:
1212
.venv/bin/py.test tests
1313

1414
clean:
15-
rm -Rf .venv
15+
rm -Rf .venv
16+
17+
# Works with bash and linux
18+
load-tests:
19+
cp conf/*.ini .
20+
curl -o reingart.zip https://www.sistemasagiles.com.ar/soft/pyafipws/reingart.zip
21+
python -m zipfile -e reingart.zip .
22+
23+
sign-tra:
24+
python -m pyafipws.wsaa
25+
26+
sign-cert:
27+
python -m pyafipws.wsfev1 --prueba
28+
29+
# Use this command wisely as it might wipe out some files
30+
# Use "git clean -n" to see the files to be cleaned
31+
# Use only when only the config files are untracked
32+
clean-tests:
33+
git clean -f
1634

1735
.PHONY: install test

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
httplib2==0.9.2; python_version <= '2.7'
22
httplib2==0.20.4; python_version > '3'
33
pysimplesoap==1.08.14; python_version <= '2.7'
4-
git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap;
4+
git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap ; python_version > '3'
55
cryptography==3.3.2; python_version <= '2.7'
6-
cryptography==3.4.7; python_version > '3'
6+
cryptography==39.0.2; python_version > '3'
77
fpdf>=1.7.2
88
dbf>=0.88.019
99
Pillow>=2.0.0

0 commit comments

Comments
 (0)