Skip to content

Commit

Permalink
bump min python version, don't test pypi twice
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariana Barzinpour committed Nov 12, 2024
1 parent 2484590 commit 5081694
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
runs-on: ubuntu-latest
needs:
- integration-tests
if: ${{ always() && needs.integration-tests.result == 'success' }}
if: |
github.event_name == 'push'
&& needs.integration-tests.result == 'success'
environment:
name: testpypi
Expand All @@ -51,7 +53,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ datasets and metadata.

pip install eodatasets3

Python 3.8+ is supported.
Python 3.10+ is supported.

## Dataset assembly

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
"eodatasets3": ["eodatasets3/py.typed"],
},
license="Apache Software License 2.0",
python_requires=">=3.8",
python_requires=">=3.10",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
url="https://github.com/opendatacube/eo-datasets",
Expand Down

0 comments on commit 5081694

Please sign in to comment.