File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Development Requirements - linting, formatting, etc.
2+ # Ensure to set PIP_INDEX_URL to the correct value for your environment
3+ # This is the URL to the Artifactory instance that hosts the Python packages (default: pypi.org)
4+ # This will not be emitted to the requirements*.txt files and must be set in the environment
5+ # before running pip install
6+
7+ # Constrain versions installed to be compatible with core dependencies
8+ --constraint requirements.txt
9+
10+ pre-commit
11+ black
12+ mypy
13+ flake8
14+ flake8-builtins
15+ flake8-pep585
Original file line number Diff line number Diff line change 22# This file is autogenerated by pip-compile with Python 3.8
33# by the following command:
44#
5- # pip-compile --resolver=backtracking requirements/ requirements-dev.in
5+ # pip-compile --no-emit-index-url -- resolver=backtracking requirements-dev.in
66#
7- black == 23.1 .0
8- # via -r requirements/requirements -dev.in
7+ black == 23.3 .0
8+ # via -r requirements-dev.in
99cfgv == 3.3.1
1010 # via pre-commit
1111click == 8.1.3
1212 # via black
1313distlib == 0.3.6
1414 # via virtualenv
15- filelock == 3.9 .0
15+ filelock == 3.12 .0
1616 # via virtualenv
1717flake8 == 6.0.0
1818 # via
19- # -r requirements/requirements -dev.in
19+ # -r requirements-dev.in
2020 # flake8-builtins
2121flake8-builtins == 2.1.0
22- # via -r requirements/requirements -dev.in
23- flake8-pep585 == 0.1.6
24- # via -r requirements/requirements -dev.in
25- identify == 2.5.18
22+ # via -r requirements-dev.in
23+ flake8-pep585 == 0.1.7
24+ # via -r requirements-dev.in
25+ identify == 2.5.24
2626 # via pre-commit
2727mccabe == 0.7.0
2828 # via flake8
29- mypy == 1.0 .0
30- # via -r requirements/requirements -dev.in
29+ mypy == 1.2 .0
30+ # via -r requirements-dev.in
3131mypy-extensions == 1.0.0
3232 # via
3333 # black
3434 # mypy
3535nodeenv == 1.7.0
3636 # via pre-commit
37- packaging == 23.0
37+ packaging == 23.1
3838 # via black
39- pathspec == 0.11.0
39+ pathspec == 0.11.1
4040 # via black
41- platformdirs == 3.0 .0
41+ platformdirs == 3.5 .0
4242 # via
4343 # black
4444 # virtualenv
45- pre-commit == 3.0.4
46- # via -r requirements/requirements -dev.in
45+ pre-commit == 3.3.1
46+ # via -r requirements-dev.in
4747pycodestyle == 2.10.0
4848 # via flake8
4949pyflakes == 3.0.1
@@ -58,7 +58,7 @@ typing-extensions==4.5.0
5858 # via
5959 # black
6060 # mypy
61- virtualenv == 20.19 .0
61+ virtualenv == 20.23 .0
6262 # via pre-commit
6363
6464# The following packages are considered to be unsafe in a requirements file:
Original file line number Diff line number Diff line change 1+ # Testing Requirements - pytest, tox, etc.
2+ # ----------------------------------------
3+ # Ensure to set PIP_INDEX_URL to the correct value for your environment
4+ # This is the URL to the Artifactory instance that hosts the Python packages (default: pypi.org)
5+ # This will not be emitted to the requirements*.txt files and must be set in the environment
6+ # before running pip install
7+
8+ # Constrain versions installed to be compatible with core dependencies
9+ --constraint requirements.txt
10+
11+ pytest
12+ pytest-randomly
13+ coverage
14+ tox
Original file line number Diff line number Diff line change 22# This file is autogenerated by pip-compile with Python 3.8
33# by the following command:
44#
5- # pip-compile --resolver=backtracking requirements/ requirements-test.in
5+ # pip-compile --no-emit-index-url -- resolver=backtracking requirements-test.in
66#
7- attrs==22.2.0
8- # via pytest
97cachetools==5.3.0
108 # via tox
119chardet==5.1.0
1210 # via tox
1311colorama==0.4.6
1412 # via tox
15- coverage==7.1.0
16- # via -r requirements/requirements -test.in
13+ coverage==7.2.5
14+ # via -r requirements-test.in
1715distlib==0.3.6
1816 # via virtualenv
19- exceptiongroup==1.1.0
17+ exceptiongroup==1.1.1
2018 # via pytest
21- filelock==3.9 .0
19+ filelock==3.12 .0
2220 # via
2321 # tox
2422 # virtualenv
25- importlib-metadata==6.0 .0
23+ importlib-metadata==6.6 .0
2624 # via pytest-randomly
2725iniconfig==2.0.0
2826 # via pytest
29- packaging==23.0
27+ packaging==23.1
3028 # via
3129 # pyproject-api
3230 # pytest
3331 # tox
34- platformdirs==3.0 .0
32+ platformdirs==3.5 .0
3533 # via
3634 # tox
3735 # virtualenv
3836pluggy==1.0.0
3937 # via
4038 # pytest
4139 # tox
42- pyproject-api==1.5.0
40+ pyproject-api==1.5.1
4341 # via tox
44- pytest==7.2 .1
42+ pytest==7.3 .1
4543 # via
46- # -r requirements/requirements -test.in
44+ # -r requirements-test.in
4745 # pytest-randomly
4846pytest-randomly==3.12.0
49- # via -r requirements/requirements -test.in
47+ # via -r requirements-test.in
5048tomli==2.0.1
5149 # via
5250 # pyproject-api
5351 # pytest
5452 # tox
55- tox==4.4.5
56- # via -r requirements/requirements -test.in
57- virtualenv==20.19 .0
53+ tox==4.5.1
54+ # via -r requirements-test.in
55+ virtualenv==20.23 .0
5856 # via tox
59- zipp==3.13 .0
57+ zipp==3.15 .0
6058 # via importlib-metadata
Original file line number Diff line number Diff line change 1+ # Core Dependencies
2+ # -----------------
3+ # Ensure to set PIP_INDEX_URL to the correct value for your environment
4+ # This is the URL to the Artifactory instance that hosts the Python packages (default: pypi.org)
5+ # This will not be emitted to the requirements*.txt files and must be set in the environment
6+ # before running pip install
Original file line number Diff line number Diff line change 22# This file is autogenerated by pip-compile with Python 3.8
33# by the following command:
44#
5- # pip-compile --resolver=backtracking requirements/ requirements.in
5+ # pip-compile --no-emit-index-url -- resolver=backtracking requirements.in
66#
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments