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

Fix deps #580

Merged
merged 5 commits into from
Feb 16, 2025
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
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11
10 changes: 5 additions & 5 deletions application/web/web_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def fetch_job() -> Any:
@app.route("/rest/v1/standards", methods=["GET"])
def standards() -> Any:
if posthog:
posthog.capture(f"standards")
posthog.capture(f"standards", "")

database = db.Node_collection()
standards = database.standards()
Expand Down Expand Up @@ -407,7 +407,7 @@ def find_root_cres() -> Any:

"""
if posthog:
posthog.capture(f"find_root_cres")
posthog.capture(f"find_root_cres", "")

database = db.Node_collection()
# opt_osib = request.args.get("osib")
Expand Down Expand Up @@ -590,7 +590,7 @@ def login_r(*args, **kwargs):
def chat_cre() -> Any:
message = request.get_json(force=True)
if posthog:
posthog.capture(f"chat_cre")
posthog.capture(f"chat_cre", "")

database = db.Node_collection()
prompt = prompt_client.PromptHandler(database)
Expand Down Expand Up @@ -709,7 +709,7 @@ def logout():
def all_cres() -> Any:
database = db.Node_collection()
if posthog:
posthog.capture(f"all_cres")
posthog.capture(f"all_cres", "")

page = 1
per_page = ITEMS_PER_PAGE
Expand All @@ -735,7 +735,7 @@ def all_cres() -> Any:
@app.route("/rest/v1/cre_csv", methods=["GET"])
def get_cre_csv() -> Any:
if posthog:
posthog.capture(f"get_cre_csv")
posthog.capture(f"get_cre_csv", "")

database = db.Node_collection()
root_cres = database.get_root_cres()
Expand Down
6 changes: 0 additions & 6 deletions cre.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,6 @@ def main() -> None:
default=None,
help="define location of local directory to export database in OSIB format to",
)

parser.add_argument(
"--export",
default=None,
help="export all data into yaml files under the directory pointed to by this argument",
)
# Start External Project importing
parser.add_argument(
"--zap_in",
Expand Down
163 changes: 83 additions & 80 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,113 +1,116 @@
alive-progress
babel
beautifulsoup4
brlapi
cloud-init
colorama
command-not-found
black==24.4.2 # do not touch, same version as superlinter
click
compliance-trestle
configobj
coverage
cssselect
cupshelpers
dacite
dbus-python
defer
distro-info
duplicity
email-validator
en-core-web-sm
evdev
ewmh
fasteners
flask-caching
flask-compress
flask-cors
flask-migrate
freetype-py
future
Flask
Flask_Caching
flask_compress
Flask_Cors
Flask_Migrate
Flask-SQLAlchemy
setuptools
gitpython
grpcio-status
grpcio-tools
google-api-core
google_auth_oauthlib
google-cloud-aiplatform
grpcio_status
grpcio
gspread
gunicorn
html5lib
jsonpatch
jsonpointer
keyring
language-selector
launchpadlib
lockfile
louis
lxml
mergedeep
neomodel
netifaces
networkx
nltk
nose
olefile
oauthlib
openai
playwright
psycopg2-binary
pygithub
python_markdown_maker
scikit_learn
scipy
semver
setuptools
SQLAlchemy
compliance-trestle
nose
mypy
numpy
neo4j
neomodel
openapi-schema-validator
openapi-spec-validator
opentelemetry-exporter-gcp-trace
opentelemetry-instrumentation-flask
opentelemetry-instrumentation-requests
opentelemetry-instrumentation-sqlalchemy
opentelemetry-propagator-gcp
openpyxl
orderedmultidict
packaging
paramiko
pathable
pathspec
pbr
pep517
pexpect
pillow
Pillow
pip-autoremove
pip-chill
pipenv
pipx
platformdirs
playwright
pluggy
posthog
prance
prompt-toolkit
psutil
proto-plus
protobuf
psycopg2-binary
ptyprocess
pycairo
pyasn1
pyasn1-modules
pycodestyle
pycups
pycparser
pydantic
pyee
pyflakes
pygithub
pygobject
PyGithub
PyJWT
PyNaCl
pyparsing
pyrsistent
pyserial
pysnooper
PySnooper
pytest
pytest-base-url
pytest-playwright
python-apt
python-debian
python-dateutil
python-dotenv
python-frontmatter
python-markdown-maker
python-xlib
pyudev
pyxdg
python-slugify
PyYAML==6.0.1
regex
requests
requests-oauthlib
rfc3986
rsa
rq
redis
ruamel.yaml
ruamel.yaml.clib
scikit-learn
scour
semver
Shapely
six
smmap
sniffio
soupsieve
SQLAlchemy
sqlalchemy-stubs
systemd-python
terminator
testresources
text-unidecode
threadpoolctl
toml
tomli
tqdm
typed-ast
types-pyyaml
types-PyYAML
typing-inspect
ubuntu-drivers-common
ubuntu-pro-client
ufw
unattended-upgrades
typing_extensions
untangle
usb-creator
urllib3
vertexai
wadllib
watchdog
webencodings
xdg
xkit
xmltodict
yamllint
google-cloud-trace
alive-progress

1 change: 0 additions & 1 deletion runtime.txt

This file was deleted.