Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pydicts-0.17.0 #91

Merged
merged 1 commit into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions jupyter/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ kernelspec:
---
# CHANGELOG

## 0.17.0 (2024-11-03)
- Added colors module to fast color string programming using colorama
- Added lod_count method to count dictionaries using a lambda function
- Updated dependecies to fix several bugs

## 0.16.0 (2024-04-13)
- Added is_email method in casts

Expand Down
22 changes: 22 additions & 0 deletions jupyter/intro.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
---
jupytext:
formats: md:myst
text_representation:
extension: .md
format_name: myst
format_version: 0.13
jupytext_version: 1.11.5
kernelspec:
display_name: Python 3
language: python
name: python3
---

# Pydicts project


```{code-cell}
:tags: [remove-input]
from pydicts import __version__
print("Version:", __version__)
```


Module to use dictionaries, list of dictionaries and other data structures

## Project links
Expand Down
22 changes: 10 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pydicts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from datetime import datetime
__version__="0.16.0"
__versiondatetime__= datetime(2024, 4, 13, 8, 26)
__version__="0.17.0"
__versiondatetime__= datetime(2024, 11, 3, 8, 41)
__versiondate__=__versiondatetime__.date()
2 changes: 1 addition & 1 deletion pydicts/locale/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ msgid "I can't add a column with different size of lol"
msgstr "No puedo añadir una columna con un tamaño diferente al lol"

msgid "I can't add a row with different size of the first row of the lol"
msgstr ""
msgstr "No puedo añadir una fila con un tamaño diferente al tamaño de la primera fila del lol"

msgid "I can't remove positions from a None list"
msgstr "No puedo borrar posiciones de una lista que es None"
Expand Down
Binary file modified pydicts/locale/es/LC_MESSAGES/pydicts.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion pydicts/locale/pydicts.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-13 08:30+0200\n"
"POT-Creation-Date: 2024-11-03 08:47+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[tool.poetry]
name = "pydicts"
version = "0.16.0"
version = "0.17.0"
description = "Module to use dictionaries in various situations"
authors = ["turulomio <turulomio@yahoo.es>"]
license = "GPL-3.0"
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.9,<4"
tabulate = "^0.9.0"
pylatex = "^1.4.2"
isodate = "^0.6.1"
colorama = "^0.4.6"
tabulate = ">=0.9.0"
pylatex = ">=1.4.2"
isodate = ">=0.6.1"
colorama = ">=0.4.6"

[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
poethepoet = "^0.26.1"
coverage = "^7.5.3"
jupyter-book = "^1.0.0"
pytest = ">=8.2.1"
poethepoet = ">=0.26.1"
coverage = ">=7.5.3"
jupyter-book = ">=1.0.0"

[build-system]
requires = ["poetry-core"]
Expand Down
Loading