Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump requirements versions, tested with actual environments up to 3.12 #106

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Lightweight library for AWS SWF.
Requirements
~~~~~~~~~~~~

- Python 3.5, 3.6, 3.7, 3.8 (tested)
- Python 3.8, 3.9, 3.10, 3.11, 3.12 (tested)
- Boto3 (tested)

Goal
Expand All @@ -20,7 +20,7 @@ The goal of this library is to allow the creation of Amazon Simple
Workflow without the need to worry about the orchestration of the
different activities and building out the different workers. This
framework aims to help simple workflows. If you have a more complex
case, you might want to use directly boto.
case, you might want to use directly boto3.

Code sample
~~~~~~~~~~~
Expand Down
8 changes: 4 additions & 4 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flake8
wheel
pytest-cov==2.5.1
pytest==3.6.3
tox==2.9.1
coveralls==1.10.0
pytest-cov==5.0.0
pytest==8.3.2
tox==4.18.1
coveralls==4.0.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
backoff==1.4.3
boto3==1.7.58
backoff==2.2.1
boto3==1.35.0
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='Garcon',
version='1.0.2',
version='1.0.3',
url='https://github.com/xethorn/garcon/',
author='Michael Ortali',
author_email='[email protected]',
Expand All @@ -20,11 +20,12 @@
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['boto', 'backoff'],
install_requires=['boto3', 'backoff'],
zip_safe=False,
classifiers=[
'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 :: 3.12',
],)
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
[tox]
envlist = py27,py34,py35,py36,py37
envlist = py38,py39,py310,py311,py312

[testenv]
deps = -rrequirements-tests.txt
commands = py.test

[testenv:py27]
deps = -rrequirements-py2.txt

[testenv:py3]
deps = -rrequirements.txt
Loading