Skip to content

Commit d519608

Browse files
committed
cleanup: remove python deps from python microkit
These have somehow stuck around. What we really want is the sel4-deps so we can just install that package, we don't need black and mypy and flake8 et al when we are not a python project. Signed-off-by: Julia Vassiliki <julia.vassiliki@unsw.edu.au>
1 parent f344d90 commit d519608

6 files changed

Lines changed: 3 additions & 48 deletions

File tree

.flake8

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

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ On a Debian-like system you can do:
4949
$ rustup component add rust-src --toolchain stable-x86_64-unknown-linux-gnu
5050
$ python3.12 -m venv pyenv
5151
$ ./pyenv/bin/pip install --upgrade pip setuptools wheel
52-
$ ./pyenv/bin/pip install -r requirements.txt
52+
$ ./pyenv/bin/pip install --upgrade sel4-deps
5353

5454
If you do not have Python 3.12 available, you can get it via the
5555
*deadsnakes* PPA: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa

ci/install_ubuntu_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ sudo apt-get install -qq \
3434

3535
python3.12 -m venv pyenv
3636
./pyenv/bin/pip install --upgrade pip setuptools wheel
37-
./pyenv/bin/pip install -r requirements.txt
37+
./pyenv/bin/pip install --upgrade sel4-deps

flake.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@
3838
);
3939

4040
python = pkgs.python312;
41+
# sel4-deps
4142
pythonPackages = python.withPackages (ps: [
42-
ps.mypy
43-
ps.black
44-
ps.flake8
4543
ps.ply
4644
ps.jinja2
4745
ps.pyaml

mypy.ini

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

requirements.txt

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

0 commit comments

Comments
 (0)