Fixed missing python3-distutils dependency on Debian package.
This commit is contained in:
parent
8d5c0109f9
commit
d1c74d681b
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.10.0-2] - 2021-02-12
|
||||
### Fixed
|
||||
- Missing python3-distutils dependency on Debian package.
|
||||
|
||||
## [0.10.0] - 2021-02-12
|
||||
### Added
|
||||
- The multipart id to references of multipart components others than part 1.
|
||||
|
|
|
|||
|
|
@ -1772,6 +1772,7 @@ Options:
|
|||
- For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom)
|
||||
- For SVG/PNG/JPG beauty PCB render [PcbDraw](https://github.com/INTI-CMNB/PcbDraw). Also install the convert (from imagemagick) and rsvg-convert (from librsvg2-bin) tools.
|
||||
- To create RAR files install the rar tool.
|
||||
- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils`
|
||||
|
||||
### Installation on Ubuntu/Debian
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
kibot (0.10.0-2) stable; urgency=medium
|
||||
|
||||
* Added python3-distutils as dependency.
|
||||
Is part of the base Python standard, but in a separated package.
|
||||
|
||||
-- Salvador E. Tropea <salvador@inti.gob.ar> Fri, 12 Feb 2021 17:22:27 -0300
|
||||
|
||||
kibot (0.10.0-1) stable; urgency=medium
|
||||
|
||||
* Most relevant:
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ X-Python3-Version: >= 3.6
|
|||
Package: kibot
|
||||
Architecture: all
|
||||
Multi-Arch: foreign
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.6), python3-wxgtk4.0
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-distutils, python3-yaml, kicad (>= 5.1.6), python3-wxgtk4.0
|
||||
Recommends: kibom.inti-cmnb (>= 1.8.0), interactivehtmlbom.inti-cmnb, pcbdraw, imagemagick, librsvg2-bin, python3-xlsxwriter, rar
|
||||
Description: KiCad Bot
|
||||
KiBot is a program which helps you to automate the generation of KiCad
|
||||
|
|
|
|||
|
|
@ -858,6 +858,7 @@ kibot --list
|
|||
- For interactive BoM install [InteractiveHtmlBom](https://github.com/INTI-CMNB/InteractiveHtmlBom)
|
||||
- For SVG/PNG/JPG beauty PCB render [PcbDraw](https://github.com/INTI-CMNB/PcbDraw). Also install the convert (from imagemagick) and rsvg-convert (from librsvg2-bin) tools.
|
||||
- To create RAR files install the rar tool.
|
||||
- The `distutils` module. This is part of Python, but on debian systems this is in a separated package: `python3-distutils`
|
||||
|
||||
### Installation on Ubuntu/Debian
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue