Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 5bebd46

Browse files
authored
Merge pull request #1 from sergeyklay/feature/python-3.6
Enable Python 3.6 support
2 parents 25071b7 + d38cd16 commit 5bebd46

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
fail-fast: false
4343

4444
matrix:
45-
python: [ '3.7', '3.8', '3.9', '3.10.0-alpha.4' ]
45+
python: [ '3.6', '3.7', '3.8', '3.9', '3.10.0-alpha.4' ]
4646
os: [ ubuntu-20.04, macos-latest, windows-2019 ]
4747

4848
steps:

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ releases, in reverse chronological order.
66

77
Versions follow `Semantic Versioning`_ (``<major>.<minor>.<patch>``).
88

9+
.. note::
10+
11+
Backward incompatible (breaking) changes will only be introduced in major
12+
versions.
13+
14+
1.1.0 (2021-01-26)
15+
------------------
16+
17+
Features
18+
^^^^^^^^
19+
20+
- Enable Python 3.6 support
21+
22+
23+
----
24+
25+
926
1.0.0 (2021-01-26)
1027
------------------
1128

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Project Information
2929

3030
``asdicts`` is released under the `Apache Licence 2.0 <https://choosealicense.com/licenses/apache-2.0/>`_,
3131
and the code on `GitHub <https://github.com/sergeyklay/asdicts>`_. It’s rigorously
32-
tested on Python 3.7+. If you'd like to contribute to ``asdicts`` you're most welcome!
32+
tested on Python 3.6+. If you'd like to contribute to ``asdicts`` you're most welcome!
3333

3434
.. -support-
3535

asdicts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"""
2727

2828
__copyright__ = 'Copyright (C) 2021 Serghei Iakovlev'
29-
__version__ = '1.0.0'
29+
__version__ = '1.1.0'
3030
__license__ = 'Apache 2.0'
3131
__author__ = 'Serghei Iakovlev'
3232
__author_email__ = 'egrep@protonmail.ch'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def get_version_string():
128128

129129
'Programming Language :: Python',
130130
'Programming Language :: Python :: 3',
131+
'Programming Language :: Python :: 3.6',
131132
'Programming Language :: Python :: 3.7',
132133
'Programming Language :: Python :: 3.8',
133134
'Programming Language :: Python :: 3.9',
@@ -173,7 +174,7 @@ def get_version_string():
173174
platforms='any',
174175
include_package_data=True,
175176
zip_safe=False,
176-
python_requires='>=3.7, <4',
177+
python_requires='>=3.6, <4',
177178
install_requires=INSTALL_REQUIRES,
178179
extras_require=EXTRAS_REQUIRE,
179180
)

0 commit comments

Comments
 (0)