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

Update release procedure & compatibility tests #165

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,16 @@ git push upstream v<release version>rc<N>
(without the rc<N>).
1. Check that the "Publish to PyPI and TestPyPI" GitHub action passed and that the
distributions are published on https://pypi.org/project/ixmp4/ .
1. Update on [conda-forge](https://github.com/conda-forge/ixmp4-feedstock).
A PR should automatically be opened by a bot after the GitHub release (sometimes this
takes from 30 minutes to several hours).

1. Confirm that any new dependencies are added. The minimum versions in meta.yaml
should match the versions in pyproject.toml.
1. Ensure that tests pass and complete any other checklist items.
1. Merge the PR.
1. Check that the new package version appears on conda-forge. This may take up to
several hours.

## Contributing

Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,15 @@ a Pull Request, add your name to the "authors" section in the `pyproject.toml` f
This project mainly targets postgres version 16 but we test version 15 continously also. Tests with pyarrow installed alongside are also run due to its effect on pandas etc.
| python | postgres | with pyarrow |
|--------|----------|--------------|
| 3.10 | 16 | true |
| 3.10 | 16 | false |
| 3.11 | 16 | true |
| 3.11 | 16 | false |
| 3.12 | 16 | false |
| 3.12 | 16 | true |
| 3.12 | 15 | false |
| 3.12 | 16 | false |
| 3.13 | 16 | true |
| 3.13 | 16 | false |
| 3.13 | 15 | false |

## Funding ackownledgement

Expand Down
Loading