Skip to content

Commit

Permalink
Merge branch 'main' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Pale-Blue-Dot-97 authored Sep 12, 2023
2 parents bfcd26d + 782fbaa commit 1108b75
Show file tree
Hide file tree
Showing 6 changed files with 1,423 additions and 1,343 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Qodana Scan 🔭
uses: JetBrains/[email protected].1
uses: JetBrains/[email protected].6
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: requirements-txt-fixer

- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black

Expand Down
62 changes: 32 additions & 30 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,66 +4,68 @@ verify_ssl = true
name = "pypi"

[packages]
alive_progress = "==3.1.2"
argcomplete = "==3.0.8"
alive_progress = "==3.1.4"
argcomplete = "==3.1.1"
catalyst = "==22.4"
fastapi = "==0.101.0"
fiona = ">=1.9.1"
geopy = "==2.3.0"
imageio = "==2.28.1"
geopy = "==2.4.0"
GitPython = ">=3.1.35"
imageio = "==2.31.3"
inputimeout = "==1.0.4"
ipykernel = "==6.23.1"
lightly = "==1.4.5"
matplotlib = "==3.7.1"
mlflow = "==2.5.0"
ipykernel = "==6.25.1"
lightly = "==1.4.6"
matplotlib = "==3.7.2"
mlflow = "==2.6.0"
nptyping = "==2.5.0"
numba = ">=0.57.0" # not directly required but pinned to ensure Python 3.11 compatibility.
numpy = "==1.23.5"
numpy = "==1.24.3"
onnx = "==1.14.0"
onnx2torch = "==1.5.6"
onnx2torch = "==1.5.11"
overload = "==1.1"
pandas = "==2.0.1"
pandas = "==2.1.0"
protobuf = ">=3.19.5" # not directly required, pinned by Snyk to avoid a vulnerability
psutil = "==5.9.5"
pygments = ">=2.7.4" # not directly required, pinned by Snyk to avoid a vulnerability
pyyaml = "==6.0"
pyyaml = "==6.0.1"
rasterio = ">=1.3.6"
requests = "==2.31.0"
scikit-learn = "==1.2.2"
scikit-learn = "==1.3.0"
segmentation-models-pytorch = "==0.3.3"
setuptools = "==67.7.2"
starlette = "==0.27.0" # not directly required, pinned by Dependabot to avoid a vulnerability.
setuptools = "==67.8.0"
starlette = ">=0.25.0" # not directly required, pinned by Dependabot to avoid a vulnerability.
tabulate = "==0.9.0"
tensorflow = "==2.12.0"
tensorflow = "==2.13.0"
timm = "==0.9.2"
torchgeo = {git = "https://github.com/microsoft/torchgeo"}
torchinfo = "==1.8.0"
tqdm = "==4.65.0"
types-PyYAML = "==6.0.12.9"
types-requests = "==2.30.0.0"
types-tabulate = "==0.9.0.2"
wandb = "==0.15.2"
tornado = ">=6.3.3"
tqdm = "==4.66.1"
types-PyYAML = "==6.0.12.11"
types-requests = "==2.31.0.2"
types-tabulate = "==0.9.0.3"
wandb = "==0.15.8"
Werkzeug = ">=2.2.3" # Patches a potential security vulnerability.
wheel = ">=0.38.0" # not directly required, pinned by Snyk to avoid a vulnerability

[dev-packages]
certifi = ">=2022.12.7" # not directly required, pinned by Snyk to avoid a vulnerability
internet-sabotage3 = "==0.1.6"
flake8 = "==6.0.0"
mypy = "==1.3.0"
myst_parser= "==1.0.0"
pre-commit = "==3.3.1"
pytest = "==7.3.1"
pytest-cov = "==4.0.0"
flake8 = "==6.1.0"
mypy = "==1.5.1"
myst_parser= "==2.0.0"
pre-commit = "==3.4.0"
pytest = "==7.4.0"
pytest-cov = "==4.1.0"
pytest-lazy-fixture= "==0.6.3"
pygments = ">=2.7.4" # not directly required, pinned by Snyk to avoid a vulnerability
sphinx-rtd-theme = "==1.2.0"
sphinx-rtd-theme = "==1.3.0"
sphinx = "==6.2.1"
tox = "==4.5.1"
tox = "==4.8.0"

[requires]
python_version = "3.11"
python_full_version = "3.11.3"
python_full_version = "3.11.5"

[pipenv]
allow_prereleases = true
Loading

0 comments on commit 1108b75

Please sign in to comment.