Skip to content

Commit

Permalink
Clean up deps and deprecated VS Code settings
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Oct 14, 2024
1 parent 964395d commit d1114a3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 37 deletions.
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.pylint",
"ms-python.vscode-pylance"
]
}
18 changes: 8 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,18 @@
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"rust-analyzer.linkedProjects": [
"./src/secrets/Cargo.toml"
],
"python.analysis.extraPaths": [
"./src/core",
"./src/zos_console",
"./src/zos_files",
"./src/zos_jobs",
"./src/zosmf",
"./src/zos_tso"
"./src/zos_tso",
"./src/zosmf"
],
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"rust-analyzer.linkedProjects": [
"./src/secrets/Cargo.toml"
]
}
40 changes: 13 additions & 27 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,40 +1,26 @@
black
certifi==2024.7.4
chardet==4.0.0
colorama==0.4.5
commentjson==0.9.0
coverage==5.4
deepmerge==1.1.0
idna==3.7
importlib-metadata==3.6.0;python_version<"3.8"
isort
jsonschema==4.17.3
lxml==4.9.3
maturin
mccabe==0.7.0
nose2==0.10.0
pycodestyle==2.9.0
pydocstyle==5.1.1
pydoclint==0.5.3
pyfakefs
pylama==7.7.1
pylint==3.2.5
pytest==7.4.4
python-decouple==3.4
PyYAML==6.0.1
requests==2.32.0
six==1.15.0
snowballstemmer==2.1.0
typing-extensions==4.0.1
Unidecode==1.2.0
urllib3==1.26.19

# Dev deps
black
coverage
isort
maturin
pydoclint
pydocstyle
pyfakefs
pylint
pytest
wheel
zipp==3.19.1

# Local deps
-e ./src/core[secrets]
-e ./src/secrets
-e ./src/zos_console
-e ./src/zos_files
-e ./src/zos_jobs
-e ./src/zos_tso
-e ./src/zosmf

0 comments on commit d1114a3

Please sign in to comment.