Skip to content

Commit

Permalink
fix: pycodestyle not needed as ruff is coming shortly
Browse files Browse the repository at this point in the history
  • Loading branch information
laszukdawid committed Dec 24, 2024
1 parent 9d45376 commit 60d7988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ jobs:
python-version: "3.8"

- name: Install test dependencies
run: |
pip install -e .[dev]
run: pip install -e .[dev]
- name: Run ISort check
run: python -m isort --check .
- name: Run Black check
run: python -m black --check .
- name: Run PyCodeStyle check
run: python -m pycodestyle .
21 changes: 1 addition & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dev-dependencies = [
]

[project.optional-dependencies]
dev = ["isort", "black==22.6", "pycodestyle"]
dev = ["isort", "black==22.6"]
plot = ["matplotlib"]
tensorboard = ["tensorboard"]
neptune = ["neptune-client", "psutil"]
Expand Down Expand Up @@ -68,22 +68,3 @@ testpaths = ["ai_traineree", "tests"]
# "if __name__ == '__main__':",
# "@abstract"
# ]

# [pycodestyle]
# max-line-length = 120
# ignore = ["E203", "E226", "E252", "E293", "W503"]
# [tool.uv]
# dev-dependencies = [
# # "sphinx~=4.0",
# # "sphinx-rtd-theme~=0.5",
# # "mock~=4.0",
# # "pytest~=5.4",
# # "pytest-cov~=2.10",
# # "pytest-mock~=3.3",
# # "flake8>=3.9",
# # # "gym[box2d]~=0.19.0",
# # # "pettingzoo[sisl,other]==1.11.*"
# # "black~=22.1.0",
# # "isort~=5.10.0",
# # "pycodestyle~=2.8.0"
# ]

0 comments on commit 60d7988

Please sign in to comment.