Skip to content

minimal environment #48830

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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 28 additions & 0 deletions minimal-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
attrs==22.1.0
Cython==0.29.32
iniconfig==1.1.1
numpy==1.23.3
packaging==21.3
pip==22.2.2
pluggy==1.0.0
py==1.11.0
pyparsing==3.0.9
pytest==7.1.3
pytest-asyncio==0.19.0
python-dateutil==2.8.2
pytz==2022.2.1
setuptools==65.4.0
six==1.16.0
tomli==2.0.1
typing_extensions==4.3.0
wheel==0.37.1
black==22.3.0
cpplint
flake8==5.0.4
flake8-bugbear
isort
mypy
pre-commit
pycodestyle
pyupgrade

27 changes: 27 additions & 0 deletions minimal_environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: pandas-dev
channels:
- conda-forge
dependencies:
- python=3.8
- pip

# test dependencies
- cython=0.29.32
- pytest>=6.0
- pytest-asyncio>=0.17

# required dependencies
- python-dateutil
- numpy
- pytz

# code checks
- black=22.3.0
- cpplint
- flake8=5.0.4
- flake8-bugbear=22.7.1 # used by flake8, find likely bugs
- isort>=5.2.1 # check that imports are in the right order
- mypy=0.971
- pre-commit>=2.15.0
- pycodestyle # used by flake8
- pyupgrade