Skip to content

Commit

Permalink
Remove support for py36 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Mar 4, 2023
1 parent 20309dc commit a1e50d0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
# continue-on-error: true
- name: packaging
python-version: 3.8
- name: py36
python-version: 3.8
- name: py37
python-version: 3.7
- name: py38
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Notes
However, it will install the `ruyaml` python module. Thus, simply
replace ``from ruamel import yaml`` with ``import ruyaml as yaml``
(or equivalent) and you're all set.
- python3.6 is the minimal version of python supported
- python3.7 is the minimal version of python supported


:version: 0.90.1
Expand Down
2 changes: 1 addition & 1 deletion _doc/pyyaml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ the document starts with::
Python Compatibility
++++++++++++++++++++

``ruyaml`` requires Python 3.6 or later.
``ruyaml`` requires Python 3.7 or later.

Fixes
+++++
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ classifiers =

Operating System :: OS Independent

Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -49,7 +48,7 @@ packages =

[options]
use_scm_version = True
python_requires = >=3.6
python_requires = >=3.7
package_dir =
= lib
packages = find:
Expand Down

0 comments on commit a1e50d0

Please sign in to comment.