Skip to content

Commit 3d9bf43

Browse files
author
Pablo Ramos
committed
fix: clean code and fix some erratas
1 parent a3f0ec5 commit 3d9bf43

File tree

454 files changed

+1485
-137393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+1485
-137393
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ build/
1616

1717
# Environment
1818
.env
19-
venv/
19+
.venv/
20+
.streamlit/
21+
data/
2022

2123
activate.sh

.venv/bin/activate

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file must be used with "source bin/activate" *from bash*
2-
# You cannot run it directly
2+
# you cannot run it directly
33

44
deactivate () {
55
# reset old environment variables
@@ -35,15 +35,8 @@ deactivate () {
3535
# unset irrelevant variables
3636
deactivate nondestructive
3737

38-
# on Windows, a path can contain colons and backslashes and has to be converted:
39-
if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then
40-
# transform D:\path\to\venv to /d/path/to/venv on MSYS
41-
# and to /cygdrive/d/path/to/venv on Cygwin
42-
export VIRTUAL_ENV=$(cygpath "/home/pablorm/Proyectos/Propios/Github/Scripts/populpy/.venv")
43-
else
44-
# use the path as-is
45-
export VIRTUAL_ENV="/home/pablorm/Proyectos/Propios/Github/Scripts/populpy/.venv"
46-
fi
38+
VIRTUAL_ENV="/home/pablorm/Proyectos/Propios/Github/Scripts/populpy/.venv"
39+
export VIRTUAL_ENV
4740

4841
_OLD_VIRTUAL_PATH="$PATH"
4942
PATH="$VIRTUAL_ENV/bin:$PATH"

.venv/bin/activate.csh

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# This file must be used with "source bin/activate.csh" *from csh*.
22
# You cannot run it directly.
3-
43
# Created by Davide Di Blasi <[email protected]>.
54
# Ported to Python 3.3 venv by Andrew Svetlov <[email protected]>
65

.venv/bin/activate.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
2-
# (https://fishshell.com/). You cannot run it directly.
2+
# (https://fishshell.com/); you cannot run it directly.
33

44
function deactivate -d "Exit virtual environment and return to normal shell environment"
55
# reset old environment variables

.venv/bin/pip3.12

-8
This file was deleted.

.venv/bin/python

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/bin/python
1+
/home/pablorm/.pyenv/versions/3.11.10/bin/python

.venv/bin/python3.12

-1
This file was deleted.

0 commit comments

Comments
 (0)