Skip to content

Commit

Permalink
Fix compatibility issues with older versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
abunuwas committed Feb 8, 2023
1 parent 83dfb24 commit 66324e2
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.3.2

* Fix compatibility with older versions of Python

## 0.3.1

* Add missing dependencies to pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "pypi"
[packages]
aiohttp = "*"
requests = "*"
jsf = "*"
jsf = "==0.5.1"
click = "*"
tabulate = "*"
pyyaml = "*"
Expand Down
111 changes: 97 additions & 14 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fencer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Fencer - The automated API security testing framework"""

__version__ = "0.3.1"
__version__ = "0.3.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ classifiers = [
dependencies = [
"click>=8.0.0",
"requests>=2.28.2",
"jsf>=0.7.1",
"jsf==0.5.1",
"tabulate>=0.9.0",
"pyyaml>=0.6",
"exrex>=0.10.5",
Expand Down

0 comments on commit 66324e2

Please sign in to comment.