Skip to content
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

build: Updated build dependencies #4035

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --upgrade build setuptools wheel
pip install --upgrade --pre numpy cython
pip install --upgrade --pre oldest-supported-numpy cython

- name: Print python info used for build
run: |
Expand All @@ -118,7 +118,7 @@ jobs:
then
pip install -r ci/requirements-pinned.txt;
fi
pip install --pre -r requirements.txt
pip install --pre --upgrade -r requirements.txt
pip uninstall -y PyQt5 PyQt6 PySide6
if [ "${{ matrix.QT_BINDING }}" == "PyQt5" ]; then
pip install --pre pyqt5;
Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ build_script:
- "pip install %PIP_OPTIONS% --upgrade build"
- "pip install %PIP_OPTIONS% --upgrade setuptools"
- "pip install %PIP_OPTIONS% --upgrade wheel"
- "pip install %PIP_OPTIONS% --upgrade numpy"
- "pip install %PIP_OPTIONS% --upgrade oldest-supported-numpy"
- "pip install %PIP_OPTIONS% --upgrade cython"

# Print Python info
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
requires = [
"wheel",
"setuptools",
"numpy>=1.12",
"Cython>=0.21.1"
"oldest-supported-numpy",
"Cython>=0.29.31"
]
build-backend = "setuptools.build_meta"

Expand Down
Loading