Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ orbs:
executors:
cloudsmith_executor:
docker:
- image: circleci/python:3.9
- image: circleci/python:3.10


workflows:
Expand Down Expand Up @@ -115,11 +115,6 @@ workflows:
service_name: pytest
command: pytest --junitxml ./reports/pytest.xml
is_test_suite: true
- python/test:
name: pytest-python3.10
version: "3.10"
pkg-manager: pip
pip-dependency-file: requirements.txt
- python/test:
name: pytest-python3.11
version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[flake8]
exclude = .svn,CVS,.bzr,.hg,.git,__pycache,.venv,migrations,settings,tests,.tox,build
max-complexity = 20
max-complexity = 22
max-line-length = 100
select = C,E,F,W,B,B950
ignore = E203,E501,D107,D102,W503
Expand Down
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ ignored-parents=
max-args=13

# Maximum number of attributes for a class (see R0902).
max-attributes=7
max-attributes=10

# Maximum number of boolean expressions in an if statement (see R0916).
max-bool-expr=5
Expand All @@ -299,7 +299,7 @@ max-locals=15
max-parents=7

# Maximum number of public methods for a class (see R0904).
max-public-methods=20
max-public-methods=22

# Maximum number of return / yield for function / method body.
max-returns=6
Expand Down
1 change: 1 addition & 0 deletions cloudsmith_cli/cli/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
help_,
list_,
login,
mcp,
metrics,
move,
policy,
Expand Down
Loading