Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
siddartham committed Feb 19, 2024
1 parent 284caa9 commit 7882fe6
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 51 deletions.
22 changes: 15 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ reinstall:
upgrade:
{ . venv/bin/activate || venv/Scripts/activate.bat ; } && \
daves-dev-tools requirements freeze\
-nv '*' . pyproject.toml tox.ini ci_requirements.txt\
-nv '*' . pyproject.toml tox.ini ci_requirements.txt dev_requirements.txt test_requirements.txt daves-dev-tools \
> .requirements.txt && \
pip3 install --upgrade --upgrade-strategy eager\
-r .requirements.txt -e . && \
pip install --upgrade --upgrade-strategy eager\
-r .requirements.txt && \
rm .requirements.txt && \
make requirements && \
echo "Upgrade completed successfully!"
make requirements

distribute:
{ . venv/bin/activate || venv/Scripts/activate.bat ; } && \
daves-dev-tools distribute --skip-existing

clean:
{ . venv/bin/activate || venv/Scripts/activate.bat ; } && \
Expand All @@ -65,8 +68,13 @@ clean:

requirements:
{ . venv/bin/activate || venv/Scripts/activate.bat ; } && \
daves-dev-tools requirements update -nv flake8 && \
echo "Requirements updated successfully!"
daves-dev-tools requirements update\
-i more-itertools -aen all\
setup.cfg pyproject.toml tox.ini && \
daves-dev-tools requirements freeze\
-nv setuptools -nv filelock -nv platformdirs\
. pyproject.toml tox.ini daves-dev-tools\
> requirements.txt

test:
{ . venv/bin/activate || venv/Scripts/activate.bat ; } && \
Expand Down
2 changes: 1 addition & 1 deletion ci_requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
daves-dev-tools~=2.21
daves-dev-tools
Binary file modified reports/ENTITY_1_REPORT.xlsx
Binary file not shown.
Binary file modified reports/ENTITY_2_REPORT.xlsx
Binary file not shown.
Binary file modified reports/NEW_TABLE_REPORT.xlsx
Binary file not shown.
79 changes: 37 additions & 42 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,67 +1,62 @@
black==23.9.1
boto3==1.28.55
botocore==1.31.55
cachetools==5.3.1
certifi==2023.7.22
black==24.2.0
cachetools==5.3.2
certifi==2024.2.2
chardet==5.2.0
charset-normalizer==3.2.0
charset-normalizer==3.3.2
click==8.1.7
colorama==0.4.6
Cython==3.0.2
daves-dev-tools==2.0.9
distlib==0.3.7
Cython==3.0.8
daves-dev-tools==2.1.0
distlib==0.3.8
docutils==0.20.1
et-xmlfile==1.1.0
exceptiongroup==1.1.3
filelock==3.12.4
flake8==6.1.0
idna==3.4
exceptiongroup==1.2.0
filelock
flake8==7.0.0
idna==3.6
importlib-metadata
importlib-resources
iniconfig==2.0.0
iso8601==2.0.0
jaraco.classes==3.3.0
jmespath==1.0.1
iso8601==2.1.0
isort==5.13.2
jaraco.classes==3.3.1
jsonpointer==2.4
keyring==24.2.0
keyring==24.3.0
markdown-it-py==3.0.0
marko==2.0.0
marko==2.0.2
mccabe==0.7.0
mdurl==0.1.2
more-itertools==9.1.0
more-itertools==10.2.0
mypy-extensions==1.0.0
mypy==1.5.1
nh3==0.2.14
oapi==1.61.0
mypy==1.8.0
nh3==0.2.15
oapi==1.62.3
openpyxl==3.1.2
packaging==23.1
pathspec==0.11.2
pip==23.2.1
packaging==23.2
pathspec==0.12.1
pip==24.0
pkginfo==1.9.6
platformdirs==3.10.0
pluggy==1.3.0
pycodestyle==2.11.0
pyflakes==3.1.0
Pygments==2.16.1
platformdirs
pluggy==1.4.0
pycodestyle==2.11.1
pyflakes==3.2.0
pygments==2.17.2
pyproject-api==1.6.1
pytest==7.4.2
python-dateutil==2.8.2
pytest==8.0.1
PyYAML==6.0.1
readme-renderer==42.0
requests-toolbelt==1.0.0
requests==2.31.0
rfc3986==2.0.0
rich==13.5.3
s3transfer==0.7.0
setuptools==68.2.2
six==1.16.0
rich==13.7.0
setuptools
sob==1.50.7
tomli-w==1.0.0
tomli==2.0.1
tox==4.11.3
twine==4.0.2
typing-extensions==4.8.0
urllib3==1.26.16
virtualenv==20.24.5
wheel==0.41.2
tox==4.13.0
twine==5.0.0
typing-extensions==4.9.0
urllib3==2.2.0
virtualenv==20.25.0
wheel==0.42.0
zipp==3.17.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages =
attribute_name_validator
install_requires =
dataclasses~=0.8; python_version <= "3.6"
oapi~=1.61
oapi~=1.62
openpyxl~=3.1

[options.entry_points]
Expand Down

0 comments on commit 7882fe6

Please sign in to comment.