From 69a62d90ccab505bdd95b9817415b93582541d6c Mon Sep 17 00:00:00 2001 From: Ondřej Nosek Date: Jul 08 2024 00:54:50 +0000 Subject: Fix package in Pypi The pyrpkg module couldn't be imported. Flake8 doesn't need installation of all dependencies - quicker. Signed-off-by: Ondřej Nosek --- diff --git a/pyproject.toml b/pyproject.toml index 9d41225..dc4a285 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rpkg" dynamic = ["license"] -version = "1.67" +version = "1.67-1" description = "A python library and runtime script for managing RPMpackage sources in a git repository" readme = "README.rst" authors = [ @@ -83,5 +83,5 @@ include = [ [tool.hatch.build.targets.wheel] packages = [ - "dist/rpkg", + "pyrpkg", ] diff --git a/tox.ini b/tox.ini index 3357e2d..2638246 100644 --- a/tox.ini +++ b/tox.ini @@ -34,10 +34,12 @@ sitepackages=true sitepackages=true [testenv:flake8] +skip_install = True deps = flake8 commands = python -m flake8 pyrpkg/ tests/ [testenv:flake8python2] +skip_install = True deps = flake8 commands = python -m flake8 pyrpkg/ tests/