Skip to content

Commit

Permalink
feat: add python 3.8 to 3.12 compatibility (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsobries authored Jul 4, 2024
1 parent 7f2d6d4 commit d3952f3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you have any questions, requests or ideas open an issue or ask us in #python

### Prerequisites

- Python >= 3.7
- Python >= 3.8

### Setup

Expand Down
26 changes: 11 additions & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
atomicwrites==1.4.1
attrs==23.2.0
backoff==2.2.1
certifi==2024.6.2
chardet==3.0.4
coverage==7.2.7
charset-normalizer==3.3.2
coverage==7.5.3
flake8==3.5.0
flake8-import-order==0.17.1
flake8-print==3.1.0
flake8-quotes==1.0.0
flatten-dict==0.3.0
flatten-dict==0.4.2
idna==2.7
importlib-metadata==6.7.0
iniconfig==2.0.0
mccabe==0.6.1
more-itertools==9.1.0
pathlib2==2.3.7.post1
pluggy==0.6.0
py==1.11.0
packaging==24.1
pluggy==1.5.0
pycodestyle==2.3.1
pyflakes==1.6.0
pytest==3.6.1
pytest==8.2.2
pytest-cov==2.5.1
pytest-mock==1.10.0
pytest-responses==0.3.0
requests==2.19.1
pytest-responses==0.5.1
requests==2.32.3
responses==0.10.15
setuptools==70.1.0
six==1.16.0
typing_extensions==4.7.1
urllib3==1.23
zipp==3.15.0
urllib3==2.2.2
30 changes: 6 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,20 @@
import setuptools

requires = [
'atomicwrites==1.4.1',
'attrs==23.2.0',
'requests==2.32.3',
'backoff==2.2.1',
'certifi==2024.6.2',
'chardet==3.0.4',
'flatten_dict==0.3.0',
'idna==2.7',
'importlib-metadata==6.7.0',
'mccabe==0.6.1',
'more-itertools==9.1.0',
'pluggy==0.6.0',
'py==1.11.0',
'requests==2.19.1',
'responses==0.10.15',
'six==1.16.0',
'typing_extensions==4.7.1',
'urllib3==1.23',
'zipp==3.15.0'
'flatten-dict==0.4.2',
]

tests_require = [
'coverage==7.2.7',
'pytest==8.2.2',
'pytest-cov==2.5.1',
'pytest-mock==1.10.0',
'pytest-responses==0.5.1',
'flake8==3.5.0',
'flake8-import-order==0.17.1',
'flake8-print==3.1.0',
'flake8-quotes==1.0.0',
'pycodestyle<2.4.0,>=2.0.0',
'pyflakes==1.6.0',
'pytest==3.6.1',
'pytest-cov==2.5.1',
'pytest-mock==1.10.0',
'pytest-responses==0.3.0'
]

extras_require = {
Expand Down

0 comments on commit d3952f3

Please sign in to comment.