From be840133555b866de3e96fd6961ba018b144bfac Mon Sep 17 00:00:00 2001 From: "Victor B." Date: Tue, 12 Mar 2024 02:10:53 +0100 Subject: [PATCH] fix build --- bob/__init__.py | 2 +- flake.nix | 3 +-- pyproject.toml | 2 +- requirements.txt | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/bob/__init__.py b/bob/__init__.py index 33d720c..cf5364a 100644 --- a/bob/__init__.py +++ b/bob/__init__.py @@ -2,7 +2,7 @@ Constants used by bob. """ -__version__ = "3.0.0-alpha" +__version__ = "3.0.0" import random diff --git a/flake.nix b/flake.nix index a12dc61..3464c16 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ packages = rec { bob = with pkgs.python311Packages; buildPythonApplication { pname = "bob"; - version = "3.0.0-alpha"; + version = "3.0.0"; pyproject = true; nativeBuildInputs = [ hatchling ]; @@ -45,7 +45,6 @@ pynacl deps.topggpy deps.tortoiseORM - asyncpg deps.aerich pyyaml tqdm diff --git a/pyproject.toml b/pyproject.toml index 595609c..951803a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ "jishaku", "pynacl", "topggpy", - "yaml", + "PyYAML", ] [project.scripts] diff --git a/requirements.txt b/requirements.txt index 9d8a212..be5ede8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ nest-asyncio jishaku pynacl topggpy -yaml +PyYAML