Skip to content

Commit

Permalink
Merge pull request #98 from hmacdope/patch-2
Browse files Browse the repository at this point in the history
Update CI.yaml for Py3.12 and drop Py3.8, add pandas>=2.2 pin
  • Loading branch information
orionarcher committed Feb 12, 2024
2 parents 514472c + d2569f0 commit 8dca230
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11]
python-version: [3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11]
python-version: [3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ dependencies:
- pip
- MDAnalysis>=2.0.0
- scipy
- setuptools
- numpy
- pandas<2.1
- pandas>=2.2
- matplotlib
- statsmodels
- pytest
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies:
- nbsphinx
- ipython
- plotly
- sphinx_rtd_theme


# Pip-only installs
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ keywords = [

dependencies = [
'numpy>=1.20.0',
'pandas<2.1',
'pandas>=2.2',
'mdanalysis>=2.0.0',
'pytest',
'matplotlib',
'setuptools',
'scipy',
'statsmodels',
'plotly',
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
setuptools
numpy>=1.20.0
pandas<2.1
pandas>=2.2
mdanalysis>=2.0.0
pytest
pathlib
Expand Down

0 comments on commit 8dca230

Please sign in to comment.