Skip to content

Commit

Permalink
updates to Pipfile
Browse files Browse the repository at this point in the history
change from mysqlclient to pymysql
  • Loading branch information
stuchalk committed Apr 18, 2024
1 parent d442dd7 commit f6cf8af
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 23 deletions.
39 changes: 18 additions & 21 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,28 @@ verify_ssl = true
name = "pypi"

[packages]
django = ">=4.2.0"
mysqlclient = ">=2.1,<2.2"
GTC = ">=1.4"
bs4 = ">=0.0.1"
requests = ">=2.28"
attrs = ">=23.2.0"
bs4 = ">=0.0.2"
charset-normalizer = ">=3.3.0"
django = ">=5.0.0"
GTC = ">=1.5.0"
gunicorn = ">=22.0.0"
html5 = ">=0.0.9"
html5lib = ">=1.1"
numpy = ">=1.26.0"
owlready2 = ">=0.46"
pnglatex = ">=1.1"
pytz = ">=2023.3"
pip-tools = ">=7.4.0"
pymysql = "==1.1.0"
pytz = ">=2024.1"
pyyaml = ">=6.0.0"
qwikidata = ">=0.4.2"
rdflib = ">=7.0"
html5 = ">=0.0.9"
html5lib = ">=1.1"
owlready2 = ">=0.45"
numpy = ">=1.26"
charset-normalizer = ">=3.3"
selenium = ">=4.15"
attrs = ">=23.1"
requests = ">=2.31.0"
selenium = ">=4.19.0"
scipy = ">=1.13.0"
sqlparse = ">=0.5.0"
urllib3 = ">=2.1"
scipy = ">=1.11"
sqlparse = ">=0.4"
pyyaml = ">=6.0"
wheel = ">=0.41"
gunicorn = ">=21.2"
pip-tools = ">=6.12"
pip = ">=23.3"
setuptools = ">=69.0"

[dev-packages]

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Owlready2>=0.40
packaging>=23.0
pip-tools>=6.12
pnglatex>=1.1
pymysql==1.1.0
pyparsing>=3.0
pyproject_hooks>=1.0
PySocks==1.7.1
Expand Down
4 changes: 2 additions & 2 deletions umisconfig/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" mysql initialization """
# import pymysql
# pymysql.install_as_MySQLdb()
import pymysql
pymysql.install_as_MySQLdb()

0 comments on commit f6cf8af

Please sign in to comment.