Skip to content

Commit

Permalink
Drop Python 3.7 and Python 3.8 in CI (#120)
Browse files Browse the repository at this point in the history
* Update main.yml
* Update setup.py
* Update README.md
  • Loading branch information
cchwala committed Apr 24, 2023
1 parent a0295ba commit 2d107e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -13,7 +13,9 @@ A python toolbox for deriving rainfall information from commercial microwave lin
Installation
------------

`pycomlink` is tested with Python 3.7, 3.8 and 3.9. It should also work without problems on Python 3.6. It might still work with Python 2.7, but this is not tested. It can be installed via [`conda-forge`](https://conda-forge.org/):
`pycomlink` is tested with Python 3.9 and 3.10. There have been problems with Python 3.8, see https://github.com/pycomlink/pycomlink/pull/120. Many things might work with older version, but there is no support for this.

It can be installed via [`conda-forge`](https://conda-forge.org/):

$ conda install -c conda-forge pycomlink

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -36,9 +36,8 @@ def read(fname):
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: BSD License",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
# A list of all available classifiers can be found at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 2d107e6

Please sign in to comment.