Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
frnmst
fpyutils
Commits
0a3bee2b
Verified
Commit
0a3bee2b
authored
Oct 27, 2022
by
frnmst
Browse files
Prepare new release
- Fix docstring parameter in a function - Update version number
parent
8ebbb189
Changes
5
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0a3bee2b
...
...
@@ -63,7 +63,6 @@ Changelogs, instructions, sources and keys can be found at
## Crypto donations
-
Bitcoin: bc1qnkflazapw3hjupawj0lm39dh9xt88s7zal5mwu
-
Monero:
84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY
-
Monero: 84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY
-
Dogecoin: DMB5h2GhHiTNW7EcmDnqkYpKs6Da2wK3zP
-
Vertcoin: vtc1qd8n3jvkd2vwrr6cpejkd9wavp4ld6xfu9hkhh0
docs/conf.py
View file @
0a3bee2b
...
...
@@ -26,6 +26,20 @@ sys.path.insert(0, os.path.abspath('..'))
# -- General configuration ------------------------------------------------
# General information about the project.
project
=
'fpyutils'
copyright
=
'2017-2022, Franco Masotti'
author
=
'Franco Masotti'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version
=
'2.2.1'
# The full version, including alpha/beta/rc tags.
release
=
'2.2.1'
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
...
...
@@ -52,20 +66,6 @@ source_suffix = '.rst'
# The master toctree document.
master_doc
=
'index'
# General information about the project.
project
=
'fpyutils'
copyright
=
'2017-2022, Franco Masotti'
author
=
'Franco Masotti'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version
=
'2.2.0'
# The full version, including alpha/beta/rc tags.
release
=
'2.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
...
...
fpyutils/filelines.py
View file @
0a3bee2b
...
...
@@ -40,6 +40,7 @@ def get_line_matches(input_file: str,
:parameter pattern: the pattern that needs to be searched.
:parameter max_occurrencies: the maximum number of expected occurrencies.
Defaults to ``0`` which means that all occurrencies will be matched.
This parameter is limited by the platform (``sys.maxsize``).
:parameter loose_matching: ignore leading and trailing whitespace
characters for both pattern and matched strings. Defaults to ``True``.
:parameter keep_all_lines: if set to ``True`` returns the whole file content
...
...
packages/aur/PKGBUILD
View file @
0a3bee2b
# Maintainer: Franco Masotti <franco dot masotti at live dot com>
# Contributor: Franco Masotti <franco dot masotti at live dot com>
pkgname
=
python-fpyutils
pkgver
=
2.2.
0
pkgver
=
2.2.
1
pkgrel
=
1
pkgdesc
=
"A collection of useful non-standard Python functions which aim to be simple to use"
arch
=(
'any'
)
url
=
"https://blog.franco.net.eu.org/software/#fpyutils"
license
=(
'GPL3'
)
depends
=(
'python'
'python-atomicwrites=1.4.
0
'
'python-requests'
)
depends
=(
'python'
'python-atomicwrites=1.4.
1
'
'python-requests'
)
makedepends
=(
'python-setuptools'
)
options
=(!
emptydirs
)
source
=(
"https://blog.franco.net.eu.org/software/fpyutils-
${
pkgver
}
/fpyutils-
${
pkgver
}
.tar.gz.sig"
"https://blog.franco.net.eu.org/software/fpyutils-
${
pkgver
}
/fpyutils-
${
pkgver
}
.tar.gz"
)
...
...
setup.py
View file @
0a3bee2b
...
...
@@ -28,7 +28,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup
(
name
=
'fpyutils'
,
version
=
'2.2.
0
'
,
version
=
'2.2.
1
'
,
packages
=
find_packages
(
exclude
=
[
'*tests*'
]),
license
=
'GPLv3+'
,
description
=
'A collection of useful non-standard Python functions which aim to be simple to use, highly readable but not efficient.'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment