Skip to content

Commit 7ef286a

Browse files
authored
Merge pull request #40 from python-ellar/package_fix
rearrangement lib dependencies
2 parents 7cff73e + 1df643c commit 7ef286a

File tree

14 files changed

+16
-162
lines changed

14 files changed

+16
-162
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Flit
1818
run: pip install flit
1919
- name: Install Dependencies
20-
run: flit install --symlink
20+
run: make install
2121
- name: Install build dependencies
2222
run: pip install build
2323
- name: Build distribution

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Flit
1919
run: pip install flit
2020
- name: Install Dependencies
21-
run: flit install --symlink
21+
run: make install
2222
- name: Test
2323
run: make test-cov
2424
- name: Coverage

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Flit
2222
run: pip install flit
2323
- name: Install Dependencies
24-
run: flit install --symlink
24+
run: make install
2525
- name: Test
2626
run: pytest tests
2727

@@ -36,7 +36,7 @@ jobs:
3636
- name: Install Flit
3737
run: pip install flit
3838
- name: Install Dependencies
39-
run: flit install --symlink
39+
run: make install
4040
- name: Ruff Lint Check
4141
run: ruff check ellar_throttler tests
4242
- name: mypy

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ clean: ## Removing cached python compiled files
1212
find . -name .ruff_cache | xargs rm -rfv
1313

1414
install: ## Install dependencies
15-
flit install --deps develop --symlink
15+
pip install -r requirements.txt
16+
flit install --symlink
1617

1718
install-full: ## Install dependencies
1819
make install

docs/img/EllarLogoB.png

-25.3 KB
Binary file not shown.

docs/img/EllarLogoIconOnly.png

-35.9 KB
Binary file not shown.

docs/img/EllarLogoW.png

-25.8 KB
Binary file not shown.

docs/img/Icon.svg

Lines changed: 0 additions & 43 deletions
This file was deleted.

docs/img/Logo.svg

Lines changed: 0 additions & 57 deletions
This file was deleted.

docs/index.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)