Skip to content

Commit 10cdaad

Browse files
committed
Testing out environmental markers for dependencies
1 parent 1f438f3 commit 10cdaad

File tree

3 files changed

+34
-23
lines changed

3 files changed

+34
-23
lines changed

.github/workflows/python-workflow.yml

+26-19
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,19 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
operating-system: [ubuntu-latest,macos-latest,windows-latest]
18-
pyth-version: ['3.7','3.8','3.9','3.10','3.11','3.12']
18+
pyth-version: ['3.6','3.7','3.8','3.9','3.10','3.11','3.12']
1919
include:
20+
- operating-system: ubuntu-20.0.4 # Checking support for ubuntu os with python 3.6
21+
pyth-version: '3.6'
22+
- operating-system: macos-13 # Checking support for mac os with python 3.6
23+
pyth-version: '3.6'
2024
- operating-system: macos-13 # Checking support for mac os with python 3.7
2125
pyth-version: '3.7'
2226
exclude:
27+
- operating-system: ubuntu-latest # python 3.7 is unavailable for mac os latest becuase 3.7 doesnt support arm 64
28+
pyth-version: '3.6'
29+
- operating-system: macos-latest # python 3.6 is unavailable for mac os latest becuase 3.6 doesnt support arm 64
30+
pyth-version: '3.6'
2331
- operating-system: macos-latest # python 3.7 is unavailable for mac os latest becuase 3.7 doesnt support arm 64
2432
pyth-version: '3.7'
2533
runs-on: ${{matrix.operating-system}}
@@ -48,20 +56,19 @@ jobs:
4856
python -m pip install --upgrade pip
4957
python -m venv ve
5058
if [[ "$(uname -s)" == "Linux" ]]; then
51-
echo "In LINUX"
52-
source ve/bin/activate
59+
echo "In LINUX"
60+
source ve/bin/activate
5361
elif [[ "$(uname -s)" == "Darwin" ]]; then
54-
echo "In MAC"
55-
source ve/bin/activate
62+
echo "In MAC"
63+
source ve/bin/activate
5664
else
57-
echo "In Windows"
58-
source ve/Scripts/activate
59-
version=$(python3 --version 2>&1 | awk '{print $2}')
60-
if [[ $version == 3.7.* ]]
61-
then
62-
pip install cryptography==41.0.7
63-
fi
64-
# check if python version is 3.7 then "pip install cryptography==41.0.7"
65+
echo "In Windows"
66+
source ve/Scripts/activate
67+
version=$(python3 --version 2>&1 | awk '{print $2}')
68+
# if [[ $version == 3.7.* ]]; then
69+
# pip install cryptography==41.0.7
70+
# fi
71+
# # check if python version is 3.7 then "pip install cryptography==41.0.7"
6572
fi
6673
echo $VIRTUAL_ENV
6774
cd $CLIENT_FOLDER
@@ -79,14 +86,14 @@ jobs:
7986
- name: Installing required python libraries and running the python programs to generate pdf report
8087
run : |
8188
if [[ "$(uname -s)" == "Linux" ]]; then
82-
source ve/bin/activate
83-
echo "In LINUX"
89+
source ve/bin/activate
90+
echo "In LINUX"
8491
elif [[ "$(uname -s)" == "Darwin" ]]; then
85-
source ve/bin/activate
86-
echo "In MAC"
92+
source ve/bin/activate
93+
echo "In MAC"
8794
else
88-
source ve/Scripts/activate
89-
echo "In Windows"
95+
source ve/Scripts/activate
96+
echo "In Windows"
9097
fi
9198
echo $VIRTUAL_ENV
9299
echo "Before Running Report Generation"

requirements.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ DateTime
66
setuptools
77
six
88
urllib3
9-
jwcrypto
10-
cryptography
9+
jwcrypto==1.5.1;python_version<="3.7"
10+
jwcrypto>=1.5.6;python_version>"3.7"
11+
cryptography==40.0.2;python_version<="3.6"
12+
cryptography<41.1.0;python_version>"3.6"

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@
2828
"setuptools",
2929
"six",
3030
"urllib3",
31-
"jwcrypto",
32-
"cryptography",
31+
"jwcrypto==1.5.1;python_version<='3.7'",
32+
"jwcrypto>=1.5.6;python_version>'3.7'",
33+
"cryptography==40.0.2;python_version<='3.6'",
34+
"cryptography<41.1.0;python_version>'3.6'"
3335
],
3436
packages=find_packages(),
3537
include_package_data=True,

0 commit comments

Comments
 (0)