Skip to content

Commit

Permalink
test Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
enekomartinmartinez committed Jan 3, 2024
1 parent ede959f commit d1b5cf9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: |
pip install .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.9', '3.11']
python-version: ['3.9', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sphinx:
build:
os: "ubuntu-22.04"
tools:
python: "3.11"
python: "3.12"

python:
install:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy<1.24
numpy
pandas[excel]
parsimonious
xarray>=2023.9
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=open('requirements.txt').read().strip().split('\n'),
package_data={
Expand Down
7 changes: 4 additions & 3 deletions tests/pytest.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[pytest]
python_files = pytest_*/**/*.py pytest_*/*.py
filterwarnings =
error
ignore:numpy.ndarray size changed, may indicate binary incompatibility.:RuntimeWarning
#filterwarnings =
# error
# ignore:numpy.ndarray size changed, may indicate binary incompatibility.:RuntimeWarning
# ignore:datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC::DeprecationWarning

0 comments on commit d1b5cf9

Please sign in to comment.