Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Drop support for Python <3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
douglatornell committed Jun 9, 2021
1 parent 53f0248 commit fa4eed2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -5,7 +5,7 @@ WaveWatch III® Command Processor
.. image:: https://img.shields.io/badge/license-Apache%202-cb2533.svg
:target: https://www.apache.org/licenses/LICENSE-2.0
:alt: Licensed under the Apache License, Version 2.0
.. image:: https://img.shields.io/badge/python-3.6+-blue.svg
.. image:: https://img.shields.io/badge/python-3.8+-blue.svg
:target: https://docs.python.org/3.9/
:alt: Python Version
.. image:: https://img.shields.io/badge/version%20control-git-blue.svg?logo=github
Expand Down
14 changes: 7 additions & 7 deletions docs/pkg_development.rst
Expand Up @@ -24,7 +24,7 @@
.. image:: https://img.shields.io/badge/license-Apache%202-cb2533.svg
:target: https://www.apache.org/licenses/LICENSE-2.0
:alt: Licensed under the Apache License, Version 2.0
.. image:: https://img.shields.io/badge/python-3.6+-blue.svg
.. image:: https://img.shields.io/badge/python-3.8+-blue.svg
:target: https://docs.python.org/3.9/
:alt: Python Version
.. image:: https://img.shields.io/badge/version%20control-git-blue.svg?logo=github
Expand Down Expand Up @@ -57,21 +57,21 @@ configuration of the WAVEWATCH III® model as it is used in the context of the `
Python Versions
===============

.. image:: https://img.shields.io/badge/python-3.6+-blue.svg
.. image:: https://img.shields.io/badge/python-3.8+-blue.svg
:target: https://docs.python.org/3.9/
:alt: Python Version

The :kbd:`wwatch3_cmd` package is developed and tested using `Python`_ 3.9.
The package uses some Python language features that are not available in versions prior to 3.6,
The :kbd:`wwatch3_cmd` package is developed using `Python`_ 3.9.
It is tested for Python versions >=3.8.
The package uses some Python language features that are not available in versions prior to 3.8,
in particular:

* `formatted string literals`_
(aka *f-strings*)
* the `file system path protocol`_
with :kbd:`=` specifiers

.. _Python: https://www.python.org/
.. _formatted string literals: https://docs.python.org/3/reference/lexical_analysis.html#f-strings
.. _file system path protocol: https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep519


.. _WWatch3-CmdGettingTheCode:
Expand Down Expand Up @@ -306,7 +306,7 @@ The output looks something like::
(line 294) ok https://docs.pytest.org/en/latest/
(line 317) ok https://coverage.readthedocs.io/en/latest/
(line 112) ok https://docs.conda.io/en/latest/miniconda.html
(line 21) ok https://img.shields.io/badge/python-3.6+-blue.svg
(line 21) ok https://img.shields.io/badge/python-3.8+-blue.svg
(line 21) ok https://img.shields.io/badge/version%20control-hg-blue.svg
(line 21) ok https://img.shields.io/badge/code%20style-black-000000.svg
(line 21) ok https://img.shields.io/bitbucket/issues/midoss/wwatch3-cmd.svg
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Expand Up @@ -28,8 +28,6 @@ classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: POSIX :: Linux
Expand Down

0 comments on commit fa4eed2

Please sign in to comment.