Skip to content

DEV: remove downstream test packages from environment.yml #50157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
18 changes: 6 additions & 12 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: pandas-dev
channels:
- conda-forge
dependencies:
- python=3.8
- python=3.10
- pip

# build dependencies
Expand All @@ -17,6 +17,7 @@ dependencies:
- psutil
- pytest-asyncio>=0.17
- boto3
- coverage

# required dependencies
- python-dateutil
Expand All @@ -27,12 +28,14 @@ dependencies:
- beautifulsoup4
- blosc
- brotlipy
- botocore
- bottleneck
- fastparquet
- fsspec
- html5lib
- hypothesis
- gcsfs
- ipython
- jinja2
- lxml
- matplotlib
Expand All @@ -41,6 +44,7 @@ dependencies:
- openpyxl
- odfpy
- pandas-gbq
- py
- psycopg2
- pyarrow<10
- pymysql
Expand All @@ -60,17 +64,7 @@ dependencies:

# downstream packages
- aiobotocore<2.0.0 # GH#44311 pinned to fix docbuild
- botocore
- cftime
- dask
- ipython
- seaborn
- scikit-learn
- statsmodels
- coverage
- pandas-datareader
- pyyaml
- py
- dask-core

# local testing dependencies
- moto
Expand Down
14 changes: 4 additions & 10 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,21 @@ pytest-xdist>=1.31
psutil
pytest-asyncio>=0.17
boto3
coverage
python-dateutil
numpy
pytz
beautifulsoup4
blosc
brotlipy
botocore
bottleneck
fastparquet
fsspec
html5lib
hypothesis
gcsfs
ipython
jinja2
lxml
matplotlib
Expand All @@ -30,6 +33,7 @@ numexpr>=2.8.0
openpyxl
odfpy
pandas-gbq
py
psycopg2-binary
pyarrow<10
pymysql
Expand All @@ -47,17 +51,7 @@ xlrd
xlsxwriter
zstandard
aiobotocore<2.0.0
botocore
cftime
dask
ipython
seaborn
scikit-learn
statsmodels
coverage
pandas-datareader
pyyaml
py
moto
flask
asv
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_pip_deps_from_conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
REMAP_VERSION = {"tzdata": "2022.1"}
RENAME = {
"pytables": "tables",
"geopandas-base": "geopandas",
"psycopg2": "psycopg2-binary",
"dask-core": "dask",
}


Expand Down