Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
Expand Down
6 changes: 5 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def cover(session):
session.run('coverage', 'erase')


@nox.session(python=PYTHON_DEFAULT_VERSION)
@nox.session(python=PYTHON_VERSIONS)
def build(session):
"""Build the distribution."""
# TODO: consider using wheel as well
Expand All @@ -186,6 +186,10 @@ def build(session):
version = os.environ['GITHUB_REF'].replace('refs/tags/v', '')
print('::set-output name=version::', version, sep='')

session.cd('dist') # makes local imports impossible
session.run('pip', 'install', glob('b2sdk-*.tar.gz')[0])
session.run('python', '-c', 'from b2sdk import v0, v1, v2')


@nox.session(python=PYTHON_DEFAULT_VERSION)
def doc(session):
Expand Down