Skip to content

Commit

Permalink
Adding IDX2
Browse files Browse the repository at this point in the history
  • Loading branch information
scrgiorgio committed May 7, 2024
1 parent 6b9ab40 commit 644cad5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-openvisus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9' , '3.10', '3.11', '3.12']
python-version: [ '3.9' , '3.10', '3.11', '3.12']
steps:
- name: git clone OpenVisus
uses: actions/checkout@v2
Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10' ] # TODO: getting conflicts '3.11', '3.12'
python-version: [ '3.9', '3.10' ] # TODO: getting conflicts '3.11', '3.12'
steps:
- name: git clone OpenVisus
uses: actions/checkout@v2
Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9' , '3.10', '3.11', '3.12' ]
python-version: [ '3.9' , '3.10', '3.11', '3.12' ]
steps:
- name: git clone OpenVisus
uses: actions/checkout@v2
Expand All @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10' ] # todo '3.11', '3.12' getting conflicts
python-version: [ '3.9', '3.10' ] # todo '3.11', '3.12' getting conflicts
steps:
- name: git clone OpenVisus
uses: actions/checkout@v2
Expand All @@ -91,7 +91,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10'] # , TODO '3.11' and 3.12 WE DON"T HAVE IT IN THE DOCKER IMAGE
python-version: [ '3.9', '3.10'] # , TODO '3.11' and 3.12 WE DON"T HAVE IT IN THE DOCKER IMAGE
steps:
- name: git clone OpenVisus
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Libs/swig/VisusPy.common
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static String convertToString(PyObject* value)
{
if (!value) return "";
PyObject* py_str = PyObject_Str(value);
const char* tmp = py_str? PyUnicode_AsUTF8(py_str) : nullptr;
const char* tmp = py_str? PyUnicode_AsUTF8(py_str) : nullptr; //cit "The caller is not responsible for deallocating the buffer."
String ret = tmp ? tmp : "";
Py_DECREF(py_str);
return ret;
Expand Down

0 comments on commit 644cad5

Please sign in to comment.