-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Preocts/preocts
Pin dev requirements, drop makefile
- Loading branch information
Showing
9 changed files
with
216 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Development Requirements - linting, formatting, etc. | ||
# Ensure to set PIP_INDEX_URL to the correct value for your environment | ||
# This is the URL to the Artifactory instance that hosts the Python packages (default: pypi.org) | ||
# This will not be emitted to the requirements*.txt files and must be set in the environment | ||
# before running pip install | ||
|
||
# Constrain versions installed to be compatible with core dependencies | ||
--constraint requirements.txt | ||
|
||
pre-commit | ||
black | ||
mypy | ||
flake8 | ||
flake8-builtins | ||
flake8-pep585 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --no-emit-index-url requirements/requirements-dev.in | ||
# | ||
black==24.3.0 | ||
# via -r requirements/requirements-dev.in | ||
cfgv==3.4.0 | ||
# via pre-commit | ||
click==8.1.7 | ||
# via black | ||
distlib==0.3.8 | ||
# via virtualenv | ||
filelock==3.13.1 | ||
# via virtualenv | ||
flake8==7.0.0 | ||
# via | ||
# -r requirements/requirements-dev.in | ||
# flake8-builtins | ||
flake8-builtins==2.2.0 | ||
# via -r requirements/requirements-dev.in | ||
flake8-pep585==0.1.7 | ||
# via -r requirements/requirements-dev.in | ||
identify==2.5.35 | ||
# via pre-commit | ||
mccabe==0.7.0 | ||
# via flake8 | ||
mypy==1.9.0 | ||
# via -r requirements/requirements-dev.in | ||
mypy-extensions==1.0.0 | ||
# via | ||
# black | ||
# mypy | ||
nodeenv==1.8.0 | ||
# via pre-commit | ||
packaging==24.0 | ||
# via black | ||
pathspec==0.12.1 | ||
# via black | ||
platformdirs==4.2.0 | ||
# via | ||
# black | ||
# virtualenv | ||
pre-commit==3.6.2 | ||
# via -r requirements/requirements-dev.in | ||
pycodestyle==2.11.1 | ||
# via flake8 | ||
pyflakes==3.2.0 | ||
# via flake8 | ||
pyyaml==6.0.1 | ||
# via pre-commit | ||
typing-extensions==4.10.0 | ||
# via mypy | ||
virtualenv==20.25.1 | ||
# via pre-commit | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Testing Requirements | ||
# ---------------------------------------- | ||
# Ensure to set PIP_INDEX_URL to the correct value for your environment | ||
# This is the URL to the Artifactory instance that hosts the Python packages (default: pypi.org) | ||
# This will not be emitted to the requirements*.txt files and must be set in the environment | ||
# before running pip install | ||
|
||
# Constrain versions installed to be compatible with core dependencies | ||
--constraint requirements.txt | ||
|
||
pytest | ||
pytest-randomly | ||
coverage | ||
nox |
Oops, something went wrong.