-
Notifications
You must be signed in to change notification settings - Fork 18
Combine all python/numpy support PRs, set minimum python version to 3.6 #43
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
Open
tynanford
wants to merge
16
commits into
master
Choose a base branch
from
fix-pr-40
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
de3328c
pull_39, issues_37, debian 13 - gcc 14.2.0 compile error
jeonghanlee 4e6f055
more clean up for makehelper.py
jeonghanlee 796f7d7
add the min. version of numpy to requirements-latest
jeonghanlee 898bc84
update ci scripts version
tynanford fa45a3c
Update CI jobs to include deb 11, 12, 13 and py3.6 to py3.13
tynanford 19d5a5b
Fix numpy compatability between v1 and v2 for NPY_CARRAY and NPY_CARRAY
tynanford 0550f16
Add python 3.13 to base 3.15 CI
tynanford 361d480
Merge pull request #1 from tynanford/master
jeonghanlee 44a16fd
FIX: Cast to PyArrayObject *, warning of comparsion integers of npy_i…
zhangt58 f2d5c8d
Update requirements to remove numpy version
tynanford 1b7047d
Original author is Peter Heesterman - Fixed problem with NPY_CARRAY a…
tynanford 5993a6c
update docs to specify python 3.6 as minimum version
tynanford f198e16
Change to a single cast for arr to PyArrayObject in dbfield
tynanford eafb208
FIX: Handle potential mem leak by properly DECREF.
zhangt58 2171fed
REF: DECREF of 'aval' if elemsize is not correct before return.
zhangt58 d4d1829
REF: No need to XDECREF, added a comment as Michael suggested.
zhangt58 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule .ci
updated
9 files
| +2 −2 | .appveyor.yml | |
| +12 −18 | .github/workflows/build-and-test.yml | |
| +2 −2 | appveyor/.appveyor.yml.example-full | |
| +1 −1 | appveyor/.appveyor.yml.example-mini | |
| +12 −12 | cue-test.py | |
| +67 −28 | cue.py | |
| +30 −121 | github-actions/ci-scripts-build.yml.example-full | |
| +14 −19 | github-actions/ci-scripts-build.yml.example-mini | |
| +1 −1 | test.patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!../../bin/linux-x86/softIocPy2.7 | ||
| #!../../bin/linux-x86/softIocPy3.6 | ||
|
|
||
| < envPaths | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!../../bin/linux-x86/softIocPy2.7 | ||
| #!../../bin/linux-x86/softIocPy3.6 | ||
|
|
||
| < envPaths | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!../../bin/linux-x86_64/softIocPy2.7 | ||
| #!../../bin/linux-x86_64/softIocPy3.6 | ||
|
|
||
| < envPaths | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| numpy==1.19.5 | ||
| nose2==0.9.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| numpy==1.24.2 | ||
| nose2==0.12.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| numpy==2.2.4 | ||
| nose2==0.15.1 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.