Skip to content

Commit

Permalink
Relax test dep. constraints + unpin pandas in CI (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Mar 23, 2021
1 parent a92924c commit 9d3da26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/webviz-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
- name: 📦 Install webviz-config with dependencies
run: |
pip install 'pandas==1.1.4' # Pinned to 1.1.4 due to pandas 1.1.5 bug with pylint: https://github.com/pandas-dev/pandas/issues/38355
pip install --upgrade pip==20.2.4 # Pinned to 20.2.4 for black install compatibility: https://github.com/psf/black/issues/1847
pip install .
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def get_long_description() -> str:
"jsonschema",
"mock",
"mypy",
"pylint~=2.3",
"pylint",
"pytest-xdist",
"selenium~=3.141",
"selenium",
]

# pylint: disable=line-too-long
Expand Down Expand Up @@ -89,7 +89,6 @@ def get_long_description() -> str:
"typing-extensions>=3.7; python_version<'3.8'",
"webviz-core-components>=0.1.0",
],
tests_require=TESTS_REQUIRES,
extras_require={"tests": TESTS_REQUIRES},
setup_requires=["setuptools_scm~=3.2"],
python_requires="~=3.6",
Expand Down

0 comments on commit 9d3da26

Please sign in to comment.