alembic 1.1.0-1ubuntu1 source package in Ubuntu

Changelog

alembic (1.1.0-1ubuntu1) focal; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - d/control: Demote runtime dependency on python{3}-editor
      to Suggests to avoid inclusion in Ubuntu main.
    - d/p/disable-editor.patch: Patch out hard requirement on
      python-editor.
    - d/rules: Ignore any issues with removal of files post build.
    - Build against only the current python3, as alembic fails tests against
      python3.8.

alembic (1.1.0-1) unstable; urgency=medium

  * New upstream release.
  * Set upstream metadata fields: Contact.
  * Enable Salsa GitLab CI
  * Bump Standards-Version to 4.4.1.
  * Bump required version of python3-sqlalchemy.
  * d/copyright: Fix for new upstream release.

 -- Steve Langasek <email address hidden>  Wed, 13 Nov 2019 21:33:35 -0800

Upload details

Uploaded by:
Steve Langasek
Uploaded to:
Focal
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release main python

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
alembic_1.1.0.orig.tar.gz 425.9 KiB e43481599bb59931e39f5dedc4a2c493c1441775f8433714128908747514f31c
alembic_1.1.0-1ubuntu1.debian.tar.xz 8.0 KiB 7805b27f355a08b30a68d89583184cbe182bb7502f85a123078c05bcf5a63062
alembic_1.1.0-1ubuntu1.dsc 2.4 KiB aa80bda5c21ab7d39cccdba83a30c05b9b194cb9c5da0e12f289ec3cfe497d17

Available diffs

View changes file

Binary packages built by this source

alembic: No summary available for alembic in ubuntu groovy.

No description available for alembic in ubuntu groovy.

python3-alembic: lightweight database migration tool for SQLAlchemy - Python module

 Alembic is a new database migration tool, written by the author
 of SQLAlchemy. A migration tool offers the following functionality:
 .
  * Can emit ALTER statements to a database in order to change the
    structure of tables and other constructs
  * Provides a system whereby "migration scripts" may be constructed;
    each script indicates a particular series of steps that can
    "upgrade" a target database to a new version, and optionally a
    series of steps that can "downgrade" similarly, doing the same
    steps in reverse.
  * Allows the scripts to execute in some sequential manner.