Skip to content

Commit 49857c6

Browse files
committed
No longer supports python versions lower than 3.11
1 parent f6e6f7b commit 49857c6

File tree

7 files changed

+7
-36
lines changed

7 files changed

+7
-36
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[flake8]
22
ignore = E501,E731,F401,F821,E901
33
max-line-length = 120
4-
exclude=patterns = .git,__pycache__,.tox,.eggs,*.egg
4+
exclude=patterns = .git,__pycache__,.eggs,*.egg

.github/workflows/pythonapp.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
python:
16-
# - "3.6"
17-
# - "3.7"
18-
# - "3.8"
19-
# - "3.9"
20-
# - "3.10"
21-
# # it appears that sphinx 8.2.1 requires python version >= 3.11
2216
- "3.11"
2317
- "3.12"
2418
# IMPORTANT: update the documentation file ../../docs/source/getting-started.rst when adding more python versions to the list above

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ dist/
1616

1717
# temporary test files and dirs
1818
.coverage
19-
.tox
2019

2120
# temporary editor files
2221
*.sublime-project

development.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/source/changelog.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ v3.0.0
4242
- :meth:`sure.original.AssertionHelper.every_item_is`
4343
- :meth:`sure.original.AssertionHelper.at`
4444
- :meth:`sure.original.AssertionHelper.like`
45-
- Feel free to open an issue requesting any of those methods to be added back to Sure's codebase.
45+
46+
- No longer (officially) supports python versions lower than 3.11
4647

4748
[v2.0.0]
4849
--------

docs/source/getting-started.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,18 @@ Python version compatibility
1818

1919
:ref:`sure` is `continuously tested against
2020
<https://github.com/gabrielfalcao/sure/actions?query=workflow%3A%22Sure+Tests%22>`__
21-
python versions 3.6, 3.7, 3.9, 3.10, 3.11 and 3.12 of the `cpython
21+
python versions 3.11 and above of the `cpython
2222
<https://github.com/python/cpython/>`_ implementation.
2323

24-
It is not unlikely to work with other Python implementations such as
24+
Sure is not unlikely to work with other Python implementations such as
2525
`PyPy <https://pypy.org/>`_ or `Jython <https://www.jython.org/>`_
2626
with the added caveat that its :ref:`Special Syntax` is most likely to
2727
**not work** in any implementations other than `cpython
2828
<https://github.com/python/cpython/>`_ while the :ref:`Standard
2929
Behavior` is likely to work well.
3030

31+
Finally, Sure is no longer tested in older python versions such as
32+
3.6, 3.7, 3.9, 3.10.
3133

3234
:ref:`Standard Behavior` Example
3335
--------------------------------

tox.ini

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)