Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
adaptive
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Quantum Tinkerer
adaptive
Commits
555517d4
Commit
555517d4
authored
6 years ago
by
Joseph Weston
Browse files
Options
Downloads
Plain Diff
Merge branch 'release' into 'master'
add a release guide See merge request
!93
parents
f61c7864
1a452225
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!93
add a release guide
Pipeline
#12057
passed
6 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+7
-0
7 additions, 0 deletions
.gitlab-ci.yml
RELEASE.md
+74
-0
74 additions, 0 deletions
RELEASE.md
with
81 additions
and
0 deletions
.gitlab-ci.yml
+
7
−
0
View file @
555517d4
image
:
quantumtinkerer/research
test
:
script
:
-
pip install -r test-requirements.txt
...
...
@@ -7,3 +8,9 @@ test:
artifacts
:
paths
:
-
htmlcov
authors check
:
script
:
-
MISSING_AUTHORS=$(git shortlog -s HEAD | sed -e "s/^[0-9\t ]*//"| xargs -i sh -c 'grep -q "{}" AUTHORS.md || echo "{} missing from authors"')
-
if [ ! -z "$MISSING_AUTHORS" ]; then { echo $MISSING_AUTHORS; exit 1; }; fi
allow_failure
:
true
This diff is collapsed.
Click to expand it.
RELEASE.md
0 → 100644
+
74
−
0
View file @
555517d4
# Making a Adaptive release
This document guides a contributor through creating a release of Adaptive.
## Preflight checks
The following checks should be made
*before*
tagging the release.
#### Check that all issues are resolved
Check that all the issues and merge requests for the appropriate
[
milestone
](
https://gitlab.kwant-project.org/qt/adaptive/issues
)
have been resolved. Any unresolved issues should have their milestone
bumped.
#### Ensure that all tests pass
For major and minor releases we will be tagging the
``master``
branch.
This should be as simple as verifying that the
[
latest CI pipeline
](
https://gitlab.kwant-project.org/qt/adaptive/pipelines
)
succeeded.
#### Verify that `AUTHORS.md` is up-to-date
The following command shows the number of commits per author since the last
annotated tag:
```
t=$(git describe --abbrev=0); echo Commits since $t; git shortlog -s $t..
```
## Make a release, but do not publish it yet
### Tag the release
Make an
**annotated, signed**
tag for the release. The tag must have the name:
```
git tag -s v<version> -m "version <version>"
```
### Build a source tarball and wheels and test it
```
rm -fr build dist
python setup.py sdist bdist_wheel
```
This creates the file
`dist/adaptive-<version>.tar.gz`
. It is a good idea to unpack it
and check that the tests run:
```
tar xzf dist/adaptive*.tar.gz
cd adaptive-*
py.test .
```
## Upload to PyPI
```
twine upload dist/*
```
## Update the [conda-forge recipe](https://github.com/conda-forge/adaptive-feedstock)
*
Fork the
[
feedstock repo
](
https://github.com/conda-forge/adaptive-feedstock
)
*
Change the version number and sha256 in
`recipe/meta.yaml`
and commit to your fork
*
Open a
[
Pull Request
](
https://github.com/conda-forge/adaptive-feedstock/compare
)
*
Type
`@conda-forge-admin, please rerender`
as a comment
*
When the tests succeed, merge
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment