Skip to content

Commit

Permalink
MNT: Add python 3.12 to test (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper-Guo authored Oct 19, 2023
1 parent f556a9c commit 364e390
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
name: Tests on ${{ matrix.python-version }}
steps:
- name: Setup python
Expand Down
7 changes: 7 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ filterwarnings =
# external, verified as not relevant
# (10/2022)
ignore:.*df.iloc.*will attempt to set the values inplace.*:FutureWarning
# external, datetime module deprecation
# (11/2023)
ignore:.*datetime\.datetime.utcnow\(\) is deprecated.*:DeprecationWarning
ignore:.*datetime\.datetime.utcfromtimestamp\(\) is deprecated.*:DeprecationWarning
# external, attribute removal planned for Python 3.14
# (11/2023)
ignore:.*Attribute s is deprecated and will be removed in Python 3.14.*:DeprecationWarning

0 comments on commit 364e390

Please sign in to comment.