From 785e4b4f2fc8f541f0bdd7257d0d403152c87975 Mon Sep 17 00:00:00 2001 From: gituser789 <62549000+gituser789@users.noreply.github.com> Date: Wed, 8 May 2024 12:13:35 +0200 Subject: [PATCH] fix package import, bump version to 0.0.2 --- .gitignore | 3 ++- CHANGELOG.md | 9 ++++++--- docs/source/conf.py | 2 +- pyproject.toml | 6 +++--- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 76975e0..d360396 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ pygeckocircuits2/__pycache__/ pygeckocircuits2/config.json examples/remote_geckocircuits_example.ipes docs/build/ -dist/ \ No newline at end of file +dist/ +gpgit/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d1f121..e934a8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,12 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Automatic deployment to pyPI +### Fixed +- missing module inside python package + ## [0.0.1] - 2024-05-08 ### Added - Initial package to control GeckoCircuits from python -[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/v0.0.1...HEAD -[0.0.2]: https://github.com/upb-lea/pygeckocircuits2/compare/v0.0.1...v0.0.2 -[0.0.1]: https://github.com/upb-lea/pygeckocircuits2/releases/tag/v0.0.1 \ No newline at end of file +[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.2...HEAD +[0.0.2]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.1...0.0.2 +[0.0.1]: https://github.com/upb-lea/pygeckocircuits2/releases/tag/0.0.1 \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 223f301..72c27da 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,7 +20,7 @@ project = 'PyGeckoCircuits2' copyright = '2024, UPB-LEA' author = 'UPB-LEA' -release = '0.0.1' +release = '0.0.2' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index c7ba630..458e599 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pygeckocircuits2" -version = "0.0.1" +version = "0.0.2" authors = [ { name = "UPB-LEA" }, ] @@ -30,11 +30,11 @@ build-backend = "hatchling.build" files = ["requirements.txt"] [tool.hatch.build.targets.wheel] -packages = ["src/"] +packages = ["pygeckocircuits2/"] [tool.hatch.build.targets.sdist] include = [ - "src/*.py", + "pygeckocircuits2/*.py", "tests", "requirements.txt" ]