-
-
Notifications
You must be signed in to change notification settings - Fork 47k
ci: Consolidate requirements into pyproject.toml
#7565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
b663d49
ci: Consolidate requirements into `pyproject.toml`
CaedenPH 380784c
ci: Remove `requirements-txt-fixer`
CaedenPH 7e8ca85
fix: Validate pyproject.toml
CaedenPH 4f6b143
Merge branch 'TheAlgorithms:master' into pyproject.toml
CaedenPH c7f9baa
ci: Add `validate-pyproject` to `pre-commit`
CaedenPH 3693473
Merge branch 'pyproject.toml' of https://github.com/caedenph/python i…
CaedenPH 11bfabc
Update pyproject.toml
CaedenPH 1eb7fac
pip install --editable ".[dev]"
cclauss 52b6c26
python -m pip install --editable ".[dev]"
cclauss 61388bd
[build-system] requires = ["setuptools ~= 65.5"]
cclauss 8db92db
[build-system] requires = ["setuptools ~= 65.5"]
cclauss e03175f
Update build.yml
cclauss 1dfd693
[build-system] requires = ["setuptools ~= 65.5", "wheel"]
cclauss 17c8142
build-backend = "setuptools.build_meta"
cclauss e4f4ff7
packages
cclauss a72c39f
[tool.setuptools] packages = []
cclauss fdc0542
Update pyproject.toml
cclauss 2faf714
Update pyproject.toml
cclauss 495e5fe
Update build.yml
cclauss 8f9a6ea
Fix my email
poyea a4fe6af
Merge branch 'master' into pyproject.toml
CaedenPH 17926cf
Update pyproject.toml
CaedenPH d7b9665
ci: Add `pytest` and `pytest-cov` to dev dependencies
CaedenPH 9bbd9b9
ci: Only install dependencies
CaedenPH bed5fb3
Merge branch 'master' into pyproject.toml
CaedenPH e9ce372
chore: Fix merge mistake
CaedenPH File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 | ||||
---|---|---|---|---|---|---|
@@ -1,3 +1,53 @@ | ||||||
[build-system] | ||||||
requires = ["setuptools ~= 65.5", "wheel"] | ||||||
build-backend = "setuptools.build_meta" | ||||||
|
||||||
[project] | ||||||
name = "python-algorithms" | ||||||
description = "All algorithms implemented in Python" | ||||||
version = "1.0.0" | ||||||
|
||||||
authors = [ | ||||||
{ name = "Christian Clauss", email = "cclauss@me.com" }, | ||||||
{ name = "Dhruv Manilawala", email = "dhruvmanila@gmail.com" }, | ||||||
{ name = "John Law", email = "johnlaw.po@gmail.com" } | ||||||
] | ||||||
|
||||||
dependencies = [ | ||||||
"beautifulsoup4", | ||||||
"fake_useragent", | ||||||
"keras", | ||||||
"lxml", | ||||||
"matplotlib", | ||||||
"numpy", | ||||||
"opencv-python", | ||||||
"pandas", | ||||||
"pillow", | ||||||
"projectq", | ||||||
"qiskit", | ||||||
"requests", | ||||||
"rich", | ||||||
"scikit-fuzzy", | ||||||
"sklearn", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"statsmodels", | ||||||
"sympy", | ||||||
"tensorflow", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"texttable", | ||||||
"tweepy", | ||||||
"xgboost", | ||||||
"yulewalker" | ||||||
] | ||||||
|
||||||
[project.optional-dependencies] | ||||||
dev = [ | ||||||
"pre-commit", | ||||||
"pytest", | ||||||
"pytest-cov" | ||||||
] | ||||||
|
||||||
[tool.setuptools] | ||||||
packages = [ ] | ||||||
|
||||||
[tool.pytest.ini_options] | ||||||
markers = [ | ||||||
"mat_ops: mark a test as utilizing matrix operations.", | ||||||
|
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.