Preparing for new release.

This commit is contained in:
Franco Masotti 2022-06-24 15:44:35 +02:00
parent d09e0b280f
commit 0dbd7c8bd2
Signed by: frnmst
GPG Key ID: 24116ED85666780A
4 changed files with 14 additions and 14 deletions

View File

@ -37,7 +37,7 @@ pre-commit = ">=2,<3"
appdirs = ">=1.4,<1.5"
atomicwrites = ">=1.4,<2"
filetype = ">=1,<2"
fpyutils = ">=2.1,<3"
lxml = ">=4.6.5,<4.9"
fpyutils = ">=2.2,<3"
lxml = ">=4.9,<4.10"
PyYAML = ">=6,<7"
requests = ">=2.27,<3"
requests = ">=2.28,<3"

View File

@ -26,9 +26,9 @@ copyright = '2019-2022, Franco Masotti'
author = 'Franco Masotti'
# The short X.Y version
version = '3.0.2'
version = '3.0.3'
# The full version, including alpha/beta/rc tags
release = '3.0.2'
release = '3.0.3'
# -- General configuration ---------------------------------------------------

View File

@ -1,7 +1,7 @@
# Maintainer: Franco Masotti <franco dot masotti at live dot com>
# Contributor: Franco Masotti <franco dot masotti at live dot com>
# Maintainer: Franco Masotti <franco dot masotti at tutanota dot com>
# Contributor: Franco Masotti <franco dot masotti at tutanota dot com>
pkgname=python-fattura_elettronica_reader
pkgver=3.0.2
pkgver=3.0.3
pkgrel=1
pkgdesc="A utility that is able to check and extract electronic invoice received from the Sistema di Interscambio"
arch=('any')
@ -15,7 +15,7 @@ depends=('python'
'python-requests=2.27.1'
'python-lxml=4.8.0'
'python-yaml=6.0'
'python-fpyutils=2.1.0')
'python-fpyutils=2.2.0')
options=(!emptydirs)
source=("https://blog.franco.net.eu.org/software/fattura-elettronica-reader-${pkgver}/fattura-elettronica-reader-${pkgver}.tar.gz.sig" "https://blog.franco.net.eu.org/software/fattura-elettronica-reader-${pkgver}/fattura-elettronica-reader-${pkgver}.tar.gz")
sha512sums=('SKIP' 'SKIP')

View File

@ -1,7 +1,7 @@
#
# setup.py
#
# Copyright (C) 2019-2021 Franco Masotti (franco \D\o\T masotti {-A-T-} tutanota \D\o\T com)
# Copyright (C) 2019-2022 Franco Masotti (franco \D\o\T masotti {-A-T-} tutanota \D\o\T com)
#
# This file is part of fattura-elettronica-reader.
#
@ -27,7 +27,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup(
name='fattura_elettronica_reader',
version='3.0.2',
version='3.0.3',
packages=find_packages(exclude=['*tests*']),
license='GPL',
description='A utility that is able to check and extract electronic invoice received from the Sistema di Interscambio.',
@ -58,9 +58,9 @@ setup(
'appdirs>=1.4,<1.5',
'atomicwrites>=1.4,<2',
'filetype>=1,<2',
'fpyutils>=2.1,<3'
'lxml>=4.6.5,<4.9',
'fpyutils>=2.2,<3'
'lxml>=4.9,<4.10',
'PyYAML>=6,<7',
'requests>=2.27,<3',
'requests>=2.28,<3',
],
)