Skip to content

Commit

Permalink
Add minimum python version requirement, aligning on most scientific data
Browse files Browse the repository at this point in the history
packages
  • Loading branch information
loicdtx committed Jan 15, 2024
1 parent 341f357 commit 014130f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: checkout repo + LFS files
Expand Down
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Changes
- Possibility to pass kwargs to function of data module that load xarray.Datasets
objects (particularly useful to specify chunking and get a dask based object)
- New example in gallery on parallel fitting
- Add a minimum python version requirement (>=3.9). 3.8 not longer tested


0.1.1
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,12 @@
keywords='sentinel2, xarray, datacube, monitoring, change',
author=u"Loic Dutrieux, Jonas Viehweger, Chris Holden",
author_email='[email protected]',
url='https://jeodpp.jrc.ec.europa.eu/apps/gitlab/use_cases/canhemon/nrt.git',
url='https://github.com/ec-jrc/nrt.git',
license='EUPL-v1.2',
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',

'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=find_packages(),
package_data={'nrt': ['data/*.nc', 'data/*.tif', 'data/*.json']},
Expand All @@ -52,5 +51,6 @@
'pandas',
'affine'
],
requires-python = ">=3.9",
extras_require=extra_reqs)

0 comments on commit 014130f

Please sign in to comment.