Skip to content

Commit cfcb6e2

Browse files
committed
Cleanup
1 parent 48af7a4 commit cfcb6e2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/npyodbc_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Install npyodbc
2929
run: |
30-
pip install -v '.[test]'
30+
pip install '.[test]'
3131
3232
- name: Run Numpy tests against compilation version
3333
working-directory: tests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ dev = [
9191
"pre-commit",
9292
"meson-python"
9393
]
94-
test = ["pytest", "hypothesis", "meson-python", "setuptools_scm", "numpy>=1.26.2"]
94+
test = ["pytest", "hypothesis"]
9595

9696
[tool.setuptools_scm]
9797

src/npyodbcmodule.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
PyMODINIT_FUNC
1515
PyInit__npyodbc(void)
1616
{
17-
// Initialize the pyodbc module,
1817
PyObject *mod = initialize_pyodbc();
19-
2018
if (mod == NULL) {
2119
PyErr_SetString(PyExc_ImportError, "Error initializing pyodbc.");
2220
return NULL;

0 commit comments

Comments
 (0)