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

chore(dependencies): unpin numpy, remove pull_request_prepare.py #48

Merged
merged 1 commit into from
Aug 21, 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
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,11 @@ jobs:
name: changelog
path: CHANGELOG.md

- name: Lint Python files
run: ruff check .

- name: Format Python files
run: python scripts/pull_request_prepare.py
run: ruff format .

- name: Push release branch
env:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"numpy<2.0.0",
"numpy",
"pandas",
"xmipy",
]
Expand Down
22 changes: 0 additions & 22 deletions scripts/pull_request_prepare.py

This file was deleted.

Loading