Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ workflows:
- "3.7.2"
- "3.7.6"
- "3.8.5"
- "3.9.1"
- dist:
requires:
- test
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Status
Supported Python versions
-------------------------

Only Python 3.7 and 3.8. Python 3.6 and below will not work because we use some features introduced
in Python 3.7.
Only Python 3.7, 3.8 and 3.9. Python 3.6 and below will not work because we use some features
introduced in Python 3.7.

Quickstart
----------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def get_version(*file_paths: Sequence[str]) -> str:
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description="""Python library for Servicio de Impuestos Internos (SII) of Chile.""",
extras_require=extras_requirements,
Expand All @@ -87,7 +88,7 @@ def get_version(*file_paths: Sequence[str]) -> str:
name='cl-sii',
package_data=_package_data,
packages=find_packages(exclude=['docs', 'tests*']),
python_requires='>=3.7, <3.9',
python_requires='>=3.7, <3.10',
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist =
py37,
py38,
py39,

[testenv]
setenv =
Expand All @@ -12,3 +13,4 @@ deps =
basepython =
py37: python3.7
py38: python3.8
py39: python3.9