Skip to content

Commit

Permalink
new: prepare s3fs support for archives
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Oct 21, 2023
1 parent acfbd77 commit bf9ff87
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/instance_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
174 changes: 169 additions & 5 deletions poetry.lock

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

16 changes: 12 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ start_website = "bin.start_website:main"


[tool.poetry.dependencies]
python = ">=3.8,<3.12"
python = ">=3.8,<3.13"
requests = "^2.31.0"
flask = "^2.3.3"
gunicorn = "^21.2.0"
Expand All @@ -47,7 +47,7 @@ defang = "^0.5.3"
vt-py = "^0.17.5"
pyeupi = "^1.3.0"
pysanejs = "^2.0.2"
pylookyloo = "^1.22.0"
pylookyloo = "^1.22.1"
dnspython = "^2.4.2"
pytaxonomies = "^1.5.0"
pymisp = {version = "^2.4.176", extras = ["url", "fileobjects"]}
Expand All @@ -74,15 +74,23 @@ chardet = "^5.2.0"
pysecuritytxt = "^1.2.0"
pylookyloomonitoring = "^1.1.2"
pytz = {"version" = "^2023.3.post1", python = "<3.9"}
s3fs = "^2023.10.0"
urllib3 = [
{version = "<2", python = "<3.10"},
{version = "^2.0.7", python = ">=3.10"}
]

[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
ipython = [
{version = "<8.13.0", python = "<3.9"},
{version = "^8.13.0", python = ">=3.9"}
]
types-requests = [
{version = "<2.31", python = "<3.10"},
{version = "^2.31.0.10", python = ">=3.10"}
]
types-redis = {version = "^4.6.0.7"}
types-requests = "^2.31.0.10"
types-pkg-resources = "^0.1.3"
types-Deprecated = "^1.2.9.3"
types-python-dateutil = "^2.8.19.14"
Expand All @@ -95,7 +103,7 @@ requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"

[tool.mypy]
python_version = 3.8
python_version = "3.10"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = false
Expand Down

0 comments on commit bf9ff87

Please sign in to comment.