-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e457e01
commit bd7a76f
Showing
8 changed files
with
65 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,46 @@ | ||
{ | ||
"name": "Fugue Development Environment", | ||
"image": "fugueproject/devenv:latest", | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/local/bin/python", | ||
"python.linting.enabled": true, | ||
"python.linting.pylintEnabled": true, | ||
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", | ||
"python.formatting.blackPath": "/usr/local/py-utils/bin/black", | ||
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", | ||
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit", | ||
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", | ||
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", | ||
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", | ||
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", | ||
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint" | ||
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.10", | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/local/bin/python", | ||
"python.defaultInterpreterPath": "/usr/local/bin/python", | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"isort.interpreter": [ | ||
"/usr/local/bin/python" | ||
], | ||
"flake8.interpreter": [ | ||
"/usr/local/bin/python" | ||
], | ||
"pylint.interpreter": [ | ||
"/usr/local/bin/python" | ||
], | ||
"black-formatter.interpreter": [ | ||
"/usr/local/bin/python" | ||
] | ||
}, | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.isort", | ||
"ms-python.flake8", | ||
"ms-python.pylint", | ||
"ms-python.mypy", | ||
"ms-python.black-formatter", | ||
"GitHub.copilot", | ||
"njpwerner.autodocstring" | ||
] | ||
} | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
], | ||
"forwardPorts": [ | ||
8888 | ||
], | ||
"postCreateCommand": "make devenv", | ||
"mounts": [ | ||
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" | ||
] | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2.11.0": {}, | ||
"ghcr.io/devcontainers/features/java:1": { | ||
"version": "11" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ def get_version() -> str: | |
author_email="[email protected]", | ||
keywords="hyper parameter hyperparameter tuning tune tuner optimzation", | ||
url="http://github.com/fugue-project/tune", | ||
install_requires=["fugue", "cloudpickle", "triad>=0.8.4"], | ||
install_requires=["fugue", "cloudpickle", "triad>=0.8.4", "fs"], | ||
extras_require={ | ||
"hyperopt": ["hyperopt"], | ||
"optuna": ["optuna"], | ||
|
@@ -54,14 +54,14 @@ def get_version() -> str: | |
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
], | ||
python_requires=">=3.6", | ||
python_requires=">=3.8", | ||
entry_points={ | ||
"tune.plugins": [ | ||
"mlflow = tune_mlflow[mlflow]", | ||
|
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.5" | ||
__version__ = "0.1.6" |