Skip to content

Commit 49fc6d9

Browse files
authored
Update inits so there are no extra dependencies. (#187)
* Update inits so there are no extra dependencies. * Lint
1 parent 2777bab commit 49fc6d9

File tree

4 files changed

+2
-7
lines changed

4 files changed

+2
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
python-version: ${{ matrix.python-version }}
6060
- name: Build and release docker images
6161
run: |
62+
python -m pip install -r requirements.txt
6263
version=$(python -c "import armory; print(armory.__version__)")
6364
docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }}
6465

armory/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from armory import paths
1919

2020
# Semantic Version
21-
__version__ = "0.4.0"
21+
__version__ = "0.4.1"

armory/art_experimental/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,3 @@
22
This subpackage will contain experimental ART features that are not merged into
33
the PyPi package.
44
"""
5-
6-
from armory.art_experimental import attacks
7-
from armory.art_experimental import defences
8-
from armory.art_experimental import poison_detection

armory/data/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
"""
22
Data methods in ARMORY
33
"""
4-
5-
from armory.data import utils

0 commit comments

Comments
 (0)