Skip to content

Commit

Permalink
Extending version support (#4)
Browse files Browse the repository at this point in the history
* Extending version support
  • Loading branch information
kvs8 committed Nov 3, 2023
1 parent 6c8e0a3 commit aeb8f3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jinja2==3.1.2
cabina==0.7.1
d42==1.7.0
vedro==1.10.0
vedro>=1.5,<2.0
vedro-valera-validator==1.1.1
requests-toolbelt==1.0.0
pyparsing==3.1.1
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def find_required():
long_description_content_type="text/markdown",
author="Konstantin Shefer",
author_email="kostya.shefer.999@gmail.com",
python_requires=">=3.9",
python_requires=">=3.8",
url="https://github.com/kvs8/vedro-replay",
license="Apache-2.0",
packages=['vedro_replay'],
Expand All @@ -24,6 +24,7 @@ def find_required():
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit aeb8f3e

Please sign in to comment.