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

upgrade deps & bump ver #22

Merged
merged 6 commits into from
Nov 27, 2023
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
25 changes: 13 additions & 12 deletions metadata/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
# Data Proc
Pandas >= 1.5 # let higher dependencies figure
PyArrow >= 13.0.0
PyArrow >= 14.0.1
PySpark >= 3.5.0

# Image Processing
Pillow >= 9.5.0 # let higher dependencies figure
Pillow >= 9.5 # let higher dependencies figure
PyCOCOTools >= 2.0.7

# DL/ML
Imbalanced-Learn >= 0.11.0
TensorFlow >= 2.14.0 # let higher dependencies figure
TensorFlow >= 2.15.0

# Hugging Face
Transformers >= 4.34.0
Transformers >= 4.35.2

# LLM & related
LangChain >= 0.0.308
# PandasAI >= 1.2.10 # conflicting dependencies
LangChain >= 0.0.340
# PandasAI >= 1.5.4 # TODO: check compat

# Django & related
Django >= 4.2.6
Django-Configurations >= 2.4.1
Django-CORS-Headers >= 4.2.0
Django >= 4.2.7
Django-Configurations >= 2.5
Django-CORS-Headers >= 4.3.1
Django-Environ >= 0.11.2
Django-Extensions >= 3.2.3
Django-Jazzmin >= 2.6.0
Expand All @@ -30,12 +30,13 @@ Django-Silk >= 5.0.4
DRF-Writable-Nested >= 0.7.0

# DB-related
PsycoPG >= 3.1.12
PsycoPG >= 3.1.13
PsycoPG2-binary >= 2.9.9

# OpenSSM
OpenSSM >= 0.1.3
OpenSSA-dev[cv] >= 0.1.6.2

# misc / other
CLICK >= 8.1.7
Ruamel.YAML >= 0.17.35
Python-DotEnv >= 1.0.0
Ruamel.YAML >= 0.18.5
4 changes: 2 additions & 2 deletions metadata/requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Commitizen >= 3.10.0
Pre-Commit >= 3.4.0
Commitizen >= 3.12.0
Pre-Commit >= 3.5.0
PyWatchman >= 1.4.1
8 changes: 4 additions & 4 deletions metadata/requirements/lint.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Bandit >= 1.7.5
Flake8 >= 6.1.0
MyPy >= 1.5.1
# Prospector >= 1.10.2
MyPy >= 1.7.1
# Prospector >= 1.10.3
# conflicts with other linting dependencies
PyCodeStyle >= 2.11.0
PyCodeStyle >= 2.11.1
PyDocStyle[TOML] >= 6.3.0
PyLama >= 8.4.1
PyLint >= 3.0.0
PyLint >= 3.0.2

# ReactPy
ReactPy-Flake8 >= 0.7.0
2 changes: 1 addition & 1 deletion metadata/requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Nose >= 1.3.7
Nose2 >= 0.14.0
PyTest >= 7.4.2
PyTest >= 7.4.3
PyTest-Cov >= 4.1.0
UnitTest2 >= 1.1.0
2 changes: 1 addition & 1 deletion metadata/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23.10.4.0
23.11.26
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ dynamic = [

# entry points / scripts
'entry-points',
'scripts',
]


Expand Down Expand Up @@ -136,7 +137,7 @@ test = {file = 'metadata/requirements/test.txt'}

[build-system]
requires = [
'SetUpTools >= 68.0.0',
'Wheel >= 0.41.0',
'SetUpTools >= 69.0.2',
'Wheel >= 0.42.0',
]
build-backend = 'setuptools.build_meta'
Loading