Skip to content

Commit 300962a

Browse files
committed
Fix install
1 parent 61fed78 commit 300962a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

ci/azure/azure_template_posix.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,8 @@ jobs:
7979
testRunTitle: 'Python $(python.version)'
8080
condition: succeededOrFailed()
8181

82-
- task: PublishCodeCoverageResults@1
82+
- task: PublishCodeCoverageResults@2
8383
inputs:
84-
codeCoverageTool: Cobertura
8584
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
8685
condition: eq(variables['coverage'], 'true')
8786

ci/azure/azure_template_windows.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ jobs:
8282
testRunTitle: 'Python $(python.version)'
8383
condition: succeededOrFailed()
8484

85-
- task: PublishCodeCoverageResults@1
85+
- task: PublishCodeCoverageResults@2
8686
inputs:
87-
codeCoverageTool: Cobertura
8887
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
8988
condition: eq(variables['coverage'], 'true')
9089

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ignore = ["E203", "E266", "E501", "W503"]
8585
max-line-length = 88
8686
max-complexity = 18
8787
select = ["B","C","E","F","W","T4","B9"]
88-
exclude = ./pandas_datareader/_version.py
88+
exclude = "pandas_datareader/_version.py"
8989

9090
[tool.black]
9191
target-version = ["py38", "py39", "py310","py311","py312"]

0 commit comments

Comments
 (0)