Skip to content
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

chore: remove old Python packages #6985

Merged
merged 1 commit into from
May 25, 2023
Merged
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
9 changes: 2 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1136,8 +1136,6 @@ jobs:
root: .
paths:
- examples/build
- cli/dist
- common/dist
- harness/dist
- model_hub/dist
- docs/build
Expand Down Expand Up @@ -1764,10 +1762,7 @@ jobs:
extras-requires: "torch==1.9.0"
extra-requirements-file: "requirements.txt"
executor: <<pipeline.parameters.docker-image>>
- run: make -C cli check
- run: make -C common check
- run: make -C harness check
- run: make -C deploy check
- run: make -C model_hub check
- run: make -C e2e_tests check
- run: make -C examples check
Expand Down Expand Up @@ -3389,7 +3384,7 @@ workflows:
name: publish-python-package-rc
matrix:
parameters:
path: ["harness", "common", "cli", "deploy", "model_hub"]
path: ["harness", "model_hub"]
context: determined-production
filters: *rc-filters
requires:
Expand All @@ -3406,7 +3401,7 @@ workflows:
name: publish-python-package-release
matrix:
parameters:
path: ["harness", "common", "cli", "deploy", "model_hub"]
path: ["harness", "model_hub"]
context: determined-production
filters: *release-filters
requires:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/lint-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:
fail-fast: true
matrix:
component:
- cli
- common
- deploy
- e2e_tests
- examples
- harness
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ build-%:
$(MAKE) -C $(subst -,/,$*) build

.PHONY: build-docs
build-docs: build-common build-harness build-cli build-deploy build-model_hub build-examples build-helm build-proto
build-docs: build-harness build-model_hub build-examples build-helm build-proto
$(MAKE) -C docs build

.PHONY: build-bindings
Expand All @@ -75,20 +75,20 @@ build: build-master build-agent build-webui build-docs
clean-%:
$(MAKE) -C $(subst -,/,$*) clean
.PHONY: clean
clean: clean-tools clean-proto clean-common clean-harness clean-cli clean-deploy clean-model_hub clean-examples clean-docs clean-webui clean-master clean-agent clean-bindings
clean: clean-tools clean-proto clean-harness clean-model_hub clean-examples clean-docs clean-webui clean-master clean-agent clean-bindings

.PHONY: check-%
check-%:
$(MAKE) -C $(subst -,/,$*) check
.PHONY: check
check: check-common check-proto check-harness check-cli check-deploy check-model_hub check-e2e_tests check-tools check-master check-webui check-examples check-docs check-schemas
check: check-proto check-harness check-model_hub check-e2e_tests check-tools check-master check-webui check-examples check-docs check-schemas
$(MAKE) check-agent

.PHONY: fmt-%
fmt-%:
$(MAKE) -C $(subst -,/,$*) fmt
.PHONY: fmt
fmt: fmt-common fmt-harness fmt-cli fmt-deploy fmt-model_hub fmt-e2e_tests fmt-tools fmt-master fmt-agent fmt-webui fmt-examples fmt-docs fmt-schemas fmt-proto
fmt: fmt-harness fmt-model_hub fmt-e2e_tests fmt-tools fmt-master fmt-agent fmt-webui fmt-examples fmt-docs fmt-schemas fmt-proto

.PHONY: test-%
test-%:
Expand Down
43 changes: 0 additions & 43 deletions cli/.flake8

This file was deleted.

138 changes: 0 additions & 138 deletions cli/.gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions cli/.isort.cfg

This file was deleted.

29 changes: 0 additions & 29 deletions cli/Makefile

This file was deleted.

10 changes: 0 additions & 10 deletions cli/determined_cli/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion cli/determined_cli/__version__.py

This file was deleted.

25 changes: 0 additions & 25 deletions cli/mypy.ini

This file was deleted.

2 changes: 0 additions & 2 deletions cli/pyproject.toml

This file was deleted.

18 changes: 0 additions & 18 deletions cli/setup.py

This file was deleted.

Loading