Skip to content

Commit 206cd13

Browse files
Remove numpy pin and bump p4p
This p4p release should now support numpy 2.0. Bump epicscorelibs to required version for p4p
1 parent 82bfeed commit 206cd13

File tree

6 files changed

+190
-166
lines changed

6 files changed

+190
-166
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Python
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: "3.12"
25+
python-version: "3.7"
2626

2727
- name: Install Python Dependencies
2828
run: pip install flake8
@@ -56,14 +56,10 @@ jobs:
5656
os: [ubuntu-latest, windows-latest, macos-13]
5757
python: [cp37, cp38, cp39, cp310, cp311, cp312]
5858

59-
exclude:
60-
# MacOS 14.4.1 for arm64 doesn't support Python < 3.8
61-
- os: macos-latest
62-
python: "cp37"
6359

6460
include:
6561
# Put coverage and results files in the project directory for mac
66-
- os: macos-latest
62+
- os: macos-13
6763
cov_file: "{project}/dist/coverage.xml"
6864
results_file: "{project}/dist/pytest-results.xml"
6965
# And for windows
@@ -74,11 +70,6 @@ jobs:
7470
- os: ubuntu-latest
7571
cov_file: /output/coverage.xml
7672
results_file: /output/pytest-results.xml
77-
# MacOS 13 required for Python < 3.8
78-
- os: macos-13
79-
python: "cp37"
80-
cov_file: "{project}/dist/coverage.xml"
81-
results_file: "{project}/dist/pytest-results.xml"
8273

8374
name: build/${{ matrix.os }}/${{ matrix.python }}
8475
runs-on: ${{ matrix.os }}
@@ -126,23 +117,6 @@ jobs:
126117
name: ${{ matrix.os }}/${{ matrix.python }}
127118
directory: dist
128119

129-
publish-test-results:
130-
name: Publish Unit Tests Results
131-
needs: build
132-
runs-on: ubuntu-latest
133-
if: always()
134-
135-
steps:
136-
- name: Download Artifacts
137-
uses: actions/download-artifact@v4
138-
with:
139-
path: artifacts
140-
141-
- name: Publish Unit Test Results
142-
uses: EnricoMi/publish-unit-test-result-action@v1
143-
with:
144-
files: artifacts/**/*.xml
145-
146120
test-sdist:
147121
needs: [sdist]
148122
strategy:

0 commit comments

Comments
 (0)