diff --git a/.envrc b/.envrc deleted file mode 100644 index 8392d159..00000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use flake \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index 1c452177..cf5cffa2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,2 @@ *.bat text eol=crlf -*.cmd text eol=crlf -MaiLauncher.bat text eol=crlf working-tree-encoding=GBK \ No newline at end of file +*.cmd text eol=crlf \ No newline at end of file diff --git a/flake.lock b/flake.lock deleted file mode 100644 index 894acd48..00000000 --- a/flake.lock +++ /dev/null @@ -1,57 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 0, - "narHash": "sha256-nJj8f78AYAxl/zqLiFGXn5Im1qjFKU8yBPKoWEeZN5M=", - "path": "/nix/store/f30jn7l0bf7a01qj029fq55i466vmnkh-source", - "type": "path" - }, - "original": { - "id": "nixpkgs", - "type": "indirect" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs", - "utils": "utils" - } - }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 23b82bb7..00000000 --- a/flake.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ - description = "MaiMBot Nix Dev Env"; - - inputs = { - utils.url = "github:numtide/flake-utils"; - }; - - outputs = { - self, - nixpkgs, - utils, - ... - }: - utils.lib.eachDefaultSystem (system: let - pkgs = import nixpkgs {inherit system;}; - pythonPackages = pkgs.python3Packages; - in { - devShells.default = pkgs.mkShell { - name = "python-venv"; - venvDir = "./.venv"; - buildInputs = with pythonPackages; [ - python - venvShellHook - scipy - numpy - ]; - - postVenvCreation = '' - unset SOURCE_DATE_EPOCH - pip install -r requirements.txt - ''; - - postShellHook = '' - # allow pip to install wheels - unset SOURCE_DATE_EPOCH - ''; - }; - }); -} diff --git a/pyproject.toml b/pyproject.toml index 8517e211..fb613e19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "MaiBot" -version = "0.8.1" +version = "0.11.0" description = "MaiCore 是一个基于大语言模型的可交互智能体" requires-python = ">=3.10" dependencies = [