Skip to content

Commit

Permalink
Merge branch 'master' into taksqth/issue45
Browse files Browse the repository at this point in the history
  • Loading branch information
taksqth authored Apr 7, 2022
2 parents 29dde40 + 728dee2 commit a5d8595
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3.1.0
- uses: psf/black@stable
with:
args: ". --check"
4 changes: 2 additions & 2 deletions .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@3.0.3
uses: codacy/codacy-analysis-cli-action@4.0.2
with:
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
# You can also omit the token and run the tools that support default configurations
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ build/*
.vscode/*
.pre-commit-config.yaml
venv/
local_nbs/
local_nbs/
2 changes: 1 addition & 1 deletion marketing_attribution_models/MAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def attribution_shapley(
v = valores[1:]
coaux = coa.copy()

for line in list(range(0, ((2 ** n) - 1))):
for line in list(range(0, ((2**n) - 1))):

for channel in coa.columns:
s = len(coaux.iloc[line, :][coaux.iloc[line, :] != 0])
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pre-commit
pytest==6.2.5
pytest==7.1.1

0 comments on commit a5d8595

Please sign in to comment.