Skip to content

Commit

Permalink
Updated requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
gsolard committed Oct 12, 2023
1 parent 7196f8c commit f423cae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Data manipulation
numpy==1.21.6; python_version < "3.8"
numpy==1.23.2; python_version == "3.8"
numpy==1.23.2; python_version == "3.9"
numpy==1.26.0; python_version >= "3.10"
pandas==1.3.5; python_version < "3.8"
pandas==1.4.4; python_version == "3.8"
pandas==1.4.4; python_version == "3.9"
pandas==2.1.1; python_version >= "3.10"

# NLP
Expand All @@ -16,7 +18,8 @@ simplejson==3.19.2
requests==2.31.0

# Optionnals - code quality & cie
flake8==6.1.0
flake8==5.0.4; python_version <= "3.9"
flake8==6.1.0; python_version >= "3.10"
black==23.9.1
isort==5.12.0
nose==1.3.7
Expand Down

0 comments on commit f423cae

Please sign in to comment.