summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2023-05-01 19:13:50 +0200
committerAnthon van der Neut <anthon@mnt.org>2023-05-01 19:13:50 +0200
commit8b731994b1543d7886af85f926d9eea5a22d0732 (patch)
tree3553d4cbc80b541484d7a3f39e00cdcfd8f9d030 /__init__.py
parent45111ba0b67e8619265d89f3202635e62c13cde6 (diff)
downloadruamel.yaml-8b731994b1543d7886af85f926d9eea5a22d0732.tar.gz
retrofitted 0.18 changes
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/__init__.py b/__init__.py
index 2a2572c..58e39af 100644
--- a/__init__.py
+++ b/__init__.py
@@ -20,12 +20,11 @@ _package_data = dict(
},
classifiers=[
'Programming Language :: Python :: 3 :: Only',
- 'Programming Language :: Python :: 3.5',
- '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 :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup',
@@ -33,10 +32,10 @@ _package_data = dict(
],
keywords='yaml 1.2 parser round-trip preserve quotes order config',
read_the_docs='yaml',
- supported=[(3, 5)], # minimum
+ supported=[(3, 7)], # minimum
tox=dict(
- env='*f', # f for 3.5
- fl8excl='_test/lib',
+ env='*',
+ fl8excl='_test/lib,branch_default',
),
# universal=True,
python_requires='>=3',