Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiuGeorgiu committed Jan 6, 2022
1 parent 96a3032 commit b2a39bb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
os: [ macOS-latest ]
env:
APKTOOL_VERSION: 2.5.0
BUILD_TOOLS_VERSION: 30.0.2
APKTOOL_VERSION: 2.6.0
BUILD_TOOLS_VERSION: 32.0.0

steps:
- name: Checkout repository
Expand All @@ -40,7 +40,7 @@ jobs:
sudo wget -q "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${APKTOOL_VERSION}.jar" -O /usr/local/bin/apktool.jar
sudo chmod a+x /usr/local/bin/apktool.jar
# Install BundleDecompiler.
sudo wget -q https://github.com/TamilanPeriyasamy/BundleDecompiler/raw/master/build/libs/BundleDecompiler-0.0.2.jar -O /usr/local/bin/BundleDecompiler.jar
sudo wget -q https://raw.githubusercontent.com/TamilanPeriyasamy/BundleDecompiler/master/build/libs/BundleDecompiler-0.0.2.jar -O /usr/local/bin/BundleDecompiler.jar
sudo chmod a+x /usr/local/bin/BundleDecompiler.jar
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
architecture: x64

- run: pip install black
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
os: [ ubuntu-latest ]
env:
APKTOOL_VERSION: 2.5.0
BUILD_TOOLS_VERSION: 30.0.2
APKTOOL_VERSION: 2.6.0
BUILD_TOOLS_VERSION: 32.0.0

steps:
- name: Checkout repository
Expand All @@ -39,7 +39,8 @@ jobs:
sudo chmod a+x /usr/local/bin/apktool
sudo wget -q "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${APKTOOL_VERSION}.jar" -O /usr/local/bin/apktool.jar
sudo chmod a+x /usr/local/bin/apktool.jar
sudo wget -q https://github.com/TamilanPeriyasamy/BundleDecompiler/raw/master/build/libs/BundleDecompiler-0.0.2.jar -O /usr/local/bin/BundleDecompiler.jar
# Install BundleDecompiler.
sudo wget -q https://raw.githubusercontent.com/TamilanPeriyasamy/BundleDecompiler/master/build/libs/BundleDecompiler-0.0.2.jar -O /usr/local/bin/BundleDecompiler.jar
sudo chmod a+x /usr/local/bin/BundleDecompiler.jar
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
os: [ windows-latest ]
env:
APKTOOL_VERSION: 2.5.0
BUILD_TOOLS_VERSION: 30.0.2
APKTOOL_VERSION: 2.6.0
BUILD_TOOLS_VERSION: 32.0.0

steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pycryptodome==3.9.9
pytest-cov==2.10.1
tqdm==4.54.1
vt-py==0.6.1
Yapsy==1.12.2
pycryptodome==3.12.0
pytest-cov==3.0.0
tqdm==4.62.3
vt-py==0.13.0
Yapsy==1.12.2

0 comments on commit b2a39bb

Please sign in to comment.