Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
ironsource_api/_version.py export-subst
9 changes: 1 addition & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
brew install gitleaks
python -m pip install --upgrade pip setuptools wheel
pip install -r dev_requirements.txt
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand All @@ -40,10 +39,4 @@ jobs:
pytest -s --log-cli-level=INFO --timeout=3000 --color=auto --log-cli-format="%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)" ./tests/unit_tests/
- name: Lint with pylint
run: |
pylint --rcfile ./.pylintrc ironsource_api

- name: gitleaks-action
run: |
gitleaks --verbose detect --log-opts --since="2021-11-25"


pylint --rcfile ./.pylintrc ironsource_api
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ venv
ironsource_api/__init__.pyc
ironsource_api/__pycache__/
dist
ironsource_api.egg-info
mobile_api_lib_python.egg-info
__pycache__
4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
include README.md
include requirements.txt
graft ironsource_api
recursive-exclude * *.py[co]
include versioneer.py
include ironsource_api/_version.py
recursive-exclude * *.py[co]
1 change: 0 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pytest~=6.2.5
pytest-ordering~=0.6
pylint~=2.7.4
pytest-dotenv~=0.5.2
versioneer~=0.22
pytest-mock~=3.8.2
pytest-asyncio~=0.19.0
pytest-timeout~=2.1.0
3 changes: 1 addition & 2 deletions ironsource_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# pylint: disable-all
from . import _version
__version__ = _version.get_versions()['version']
__version__ = "0.0.2"
Loading