Skip to content

Commit

Permalink
Pin setuptools (#3265)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 26, 2022
1 parent 98a63e8 commit 11d4637
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
eval "$(conda shell.bash hook)"
conda activate test-environment
conda install "pip<21.2.1"
conda install "pip<21.2.1" "setuptools<61"
conda list
doit develop_install -o examples -o recommended -o tests -o build
pip install pyecharts idom
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
requires = [
"param >=1.9.0",
"pyct >=0.4.4",
"setuptools >=30.3.0",
"setuptools >=42,<61",
"bokeh >=2.4.0,<2.5.0",
"pyviz_comms >=0.6.0",
"requests",
"bleach",
"packaging",
"tqdm >=4.48.0",
"setuptools>=42"
"tqdm >=4.48.0"
]
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def run(self):
extras_require['build'] = [
'param >=1.9.2',
'pyct >=0.4.4',
'setuptools >=30.3.0',
'setuptools >=42,<61',
'bokeh >=2.0.0',
'pyviz_comms >=0.6.0',
'bleach',
Expand Down Expand Up @@ -219,6 +219,8 @@ def run(self):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit 11d4637

Please sign in to comment.