From 791d9c42fc944e35d6689587b201eed5623164a5 Mon Sep 17 00:00:00 2001 From: Michael Mattie Date: Mon, 19 Feb 2024 14:13:09 -0800 Subject: [PATCH] (feat) update to pythonsh 0.9.4 , fix the Pipfile, and update python.sh --- .gitmodules | 2 +- Pipfile | 15 ++++++++++----- python.paths | 3 ++- python.sh | 11 +++++++---- pythonsh | 2 +- src/pastepipe/Pipfile | 4 ++++ 6 files changed, 25 insertions(+), 12 deletions(-) create mode 100644 src/pastepipe/Pipfile diff --git a/.gitmodules b/.gitmodules index ef49103..dc35785 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "pythonsh"] path = pythonsh - url = git@github.com:coderofmattie/pythonsh.git + url = git@github.com:bitcathedrals/pythonsh.git diff --git a/Pipfile b/Pipfile index 1809978..024e15e 100644 --- a/Pipfile +++ b/Pipfile @@ -1,13 +1,18 @@ + [[source]] url = "https://pypi.python.org/simple" verify_ssl = true name = "pypi" [packages] -requests = "*" - +toml = {version = "*", index = "pypi"} +version-parser = {version = "*", index = "pypi"} +requests = {version = "~=2.31", index = "pypi"} [dev-packages] -build = "*" - +build = {version = "*", index = "pypi"} +ptpython = {version = "*", index = "pypi"} +pytest = {version = "*", index = "pypi"} +pipenv = {version = "*", index = "pypi"} +pip = {version = "*", index = "pypi"} [requires] -python_version = "3.10" +python_version = "3.12" diff --git a/python.paths b/python.paths index aa8e45f..bd5c174 100644 --- a/python.paths +++ b/python.paths @@ -1 +1,2 @@ -src/ \ No newline at end of file +src/ + diff --git a/python.sh b/python.sh index 15941f2..c9f611b 100644 --- a/python.sh +++ b/python.sh @@ -1,7 +1,10 @@ -PYTHON_VERSION="3.10:latest" +# pastepipe - python.sh +VERSION=0.2.1 -VIRTUAL_PREFIX="pastepipe" +PACKAGES="pastepipe" +SOURCE="src" -VERSION=0.2.0 +BUILD_NAME="pastepipe" +VIRTUAL_PREFIX='pastepipe' -EDITOR=nano +PYTHON_VERSION='3.12' diff --git a/pythonsh b/pythonsh index 42c2063..c32bb3e 160000 --- a/pythonsh +++ b/pythonsh @@ -1 +1 @@ -Subproject commit 42c2063a44c30bb4e6e72631aa9a3456b79d4da4 +Subproject commit c32bb3e68d5908f840e78a0946778c86f25e4a7b diff --git a/src/pastepipe/Pipfile b/src/pastepipe/Pipfile new file mode 100644 index 0000000..1746e95 --- /dev/null +++ b/src/pastepipe/Pipfile @@ -0,0 +1,4 @@ +[packages] +requests = "~=2.31" + +