Skip to content

Commit

Permalink
New requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmitaboada committed Apr 1, 2024
1 parent 9704152 commit f65692d
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 49 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.25] - 2023-04-01
### Changed
- Requirements updated

## [1.0.24] - 2023-03-30
### Changed
- Added copyright to LICENSE
Expand Down
9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,9 @@ venv:

.PHONY: requirements
requirements:
@rm -f requirements*.txt
@pip-compile requirements.in
@pip-compile requirements-dev.in

.PHONY: syncrequirements
syncrequirements: requirements
-@rm -f requirements*.txt
@(. ./venv/bin/activate && pip-compile --resolver=backtracking requirements.in)
@(. ./venv/bin/activate && pip-compile --resolver=backtracking requirements-dev.in)
(. ./venv/bin/activate && pip-sync requirements*.txt)

.PHONY: deps
Expand Down
2 changes: 1 addition & 1 deletion codenerix_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.24"
__version__ = "1.0.25"

__authors__ = [
"Juanmi Taboada",
Expand Down
69 changes: 36 additions & 33 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile requirements-dev.in
# pip-compile --resolver=backtracking requirements-dev.in
#
black==24.3.0
# via -r requirements-dev.in
build==0.10.0
build==1.2.1
# via pip-tools
cachetools==5.3.0
cachetools==5.3.3
# via tox
cfgv==3.3.1
cfgv==3.4.0
# via pre-commit
chardet==5.1.0
chardet==5.2.0
# via tox
click==8.1.3
click==8.1.7
# via
# black
# nltk
Expand All @@ -23,89 +23,92 @@ colorama==0.4.6
# via
# -r requirements-dev.in
# tox
coverage==7.2.3
coverage==7.4.4
# via -r requirements-dev.in
distlib==0.3.6
distlib==0.3.8
# via virtualenv
exceptiongroup==1.1.1
exceptiongroup==1.2.0
# via pytest
filelock==3.11.0
filelock==3.13.3
# via
# tox
# virtualenv
identify==2.5.22
identify==2.5.35
# via pre-commit
iniconfig==2.0.0
# via pytest
joblib==1.2.0
joblib==1.3.2
# via nltk
mypy-extensions==1.0.0
# via black
nltk==3.8.1
# via -r requirements-dev.in
nodeenv==1.7.0
nodeenv==1.8.0
# via pre-commit
packaging==23.0
packaging==24.0
# via
# black
# build
# pyproject-api
# pytest
# tox
pathspec==0.11.1
pathspec==0.12.1
# via black
pip-tools==6.13.0
pip-tools==7.4.1
# via -r requirements-dev.in
platformdirs==3.2.0
platformdirs==4.2.0
# via
# black
# tox
# virtualenv
pluggy==1.0.0
pluggy==1.4.0
# via
# pytest
# tox
pre-commit==3.2.2
pre-commit==3.7.0
# via -r requirements-dev.in
pycryptodomex==3.17
pycryptodomex==3.20.0
# via -r requirements-dev.in
pyproject-api==1.5.1
pyproject-api==1.6.1
# via tox
pyproject-hooks==1.0.0
# via build
pytest==7.3.0
# via
# build
# pip-tools
pytest==8.1.1
# via
# -r requirements-dev.in
# pytest-mock
pytest-mock==3.10.0
pytest-mock==3.14.0
# via -r requirements-dev.in
pyyaml==6.0
pyyaml==6.0.1
# via pre-commit
regex==2023.3.23
regex==2023.12.25
# via nltk
textnorm==1.2
# via -r requirements-dev.in
tomli==2.0.1
# via
# black
# build
# pip-tools
# pyproject-api
# pyproject-hooks
# pytest
# tox
tox==4.4.11
tox==4.14.2
# via -r requirements-dev.in
tqdm==4.65.0
tqdm==4.66.2
# via nltk
typing-extensions==4.10.0
# via black
unidecode==1.3.6
unidecode==1.3.8
# via -r requirements-dev.in
virtualenv==20.21.0
virtualenv==20.25.1
# via
# pre-commit
# tox
wheel==0.40.0
wheel==0.43.0
# via pip-tools

# The following packages are considered to be unsafe in a requirements file:
Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile requirements.in
# pip-compile --resolver=backtracking requirements.in
#
click==8.1.3
click==8.1.7
# via nltk
colorama==0.4.6
# via -r requirements.in
joblib==1.2.0
joblib==1.3.2
# via nltk
nltk==3.8.1
# via -r requirements.in
pycryptodomex==3.17
pycryptodomex==3.20.0
# via -r requirements.in
regex==2023.3.23
regex==2023.12.25
# via nltk
textnorm==1.2
# via -r requirements.in
tqdm==4.65.0
tqdm==4.66.2
# via nltk
unidecode==1.3.6
unidecode==1.3.8
# via -r requirements.in

0 comments on commit f65692d

Please sign in to comment.