Skip to content

Commit

Permalink
Update oscrypto again
Browse files Browse the repository at this point in the history
  • Loading branch information
Leseratte10 committed Dec 19, 2023
1 parent cbc4c7e commit 25fa8a5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ jobs:
run: |
# Require cryptography >= 3.1 because in 3.0 and below, the backend param in load_key_and_certificates was still required.
# Installing a forked version of oscrypto to fix OpenSSL 3 issues
pip3 install https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_fe39273cc5020_new.zip
pip3 install https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_2023-12-19.zip
pip3 install -r ./.github/workflows/ci_test_requirements.txt
# Install Python2 stuff
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo apt install python2
python2 get-pip.py
pip2 --no-python-version-warning install https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_fe39273cc5020_new.zip
pip2 --no-python-version-warning install https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_2023-12-19.zip
pip2 --no-python-version-warning install -r ./.github/workflows/ci_test_requirements.txt
- name: Run tests (Python 3)
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
# Install Python2 stuff
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
python2 get-pip.py
pip2 --no-python-version-warning install -r ./.github/workflows/ci_test_requirements.txt
python2 -m pip --no-python-version-warning install -r ./.github/workflows/ci_test_requirements.txt
- name: Run tests (Python 3)
run: |
Expand Down
2 changes: 1 addition & 1 deletion bundle_calibre_plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ rm -r __pycache__
rm *.pyc

# Set module ID. This needs to be changed if any of the module ZIPs change.
echo -n "2022-07-31-01" > module_id.txt
echo -n "2023-12-19-01" > module_id.txt

# Copy LICENSE and README.md so it'll be included in the ZIP.
cp ../LICENSE LICENSE
Expand Down
2 changes: 1 addition & 1 deletion package_modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pushd calibre-plugin
# See https://github.com/wbond/oscrypto/pull/61 for more information.

wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/asn1crypto_1.5.1.zip -O asn1crypto.zip
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_fe39273cc5020_new.zip -O oscrypto.zip
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_2023-12-19.zip -O oscrypto.zip

popd

0 comments on commit 25fa8a5

Please sign in to comment.