Upgrade to 1.1.0 (#1747053)
Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
This commit is contained in:
parent
e5e11589e4
commit
4f1c261bee
1
.gitignore
vendored
1
.gitignore
vendored
@ -23,3 +23,4 @@
|
|||||||
/alembic-1.0.8.tar.gz
|
/alembic-1.0.8.tar.gz
|
||||||
/alembic-1.0.10.tar.gz
|
/alembic-1.0.10.tar.gz
|
||||||
/alembic-1.0.11.tar.gz
|
/alembic-1.0.11.tar.gz
|
||||||
|
/alembic-1.1.0.tar.gz
|
||||||
|
@ -27,8 +27,8 @@
|
|||||||
%global modname alembic
|
%global modname alembic
|
||||||
|
|
||||||
Name: python-alembic
|
Name: python-alembic
|
||||||
Version: 1.0.11
|
Version: 1.1.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Database migration tool for SQLAlchemy
|
Summary: Database migration tool for SQLAlchemy
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -47,17 +47,8 @@ BuildRequires: python2-mock
|
|||||||
BuildRequires: python2-dateutil
|
BuildRequires: python2-dateutil
|
||||||
BuildRequires: python2-editor
|
BuildRequires: python2-editor
|
||||||
BuildRequires: python2-pytest
|
BuildRequires: python2-pytest
|
||||||
|
|
||||||
# See if we're building for python earlier than 2.7
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
|
||||||
BuildRequires: python-sqlalchemy0.7 >= 0.7.4
|
|
||||||
BuildRequires: python-argparse
|
|
||||||
BuildRequires: python-nose1.1
|
|
||||||
%else
|
|
||||||
BuildRequires: python2-nose
|
BuildRequires: python2-nose
|
||||||
BuildRequires: python2-sqlalchemy >= 0.7.4
|
BuildRequires: python2-sqlalchemy >= 1.1
|
||||||
%endif
|
|
||||||
|
|
||||||
# Just for the tests
|
# Just for the tests
|
||||||
BuildRequires: python2-psycopg2
|
BuildRequires: python2-psycopg2
|
||||||
BuildRequires: python2-mysql
|
BuildRequires: python2-mysql
|
||||||
@ -65,8 +56,7 @@ BuildRequires: python2-mysql
|
|||||||
|
|
||||||
%if %{with python3}
|
%if %{with python3}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python2-tools
|
BuildRequires: python3-sqlalchemy >= 1.1
|
||||||
BuildRequires: python3-sqlalchemy >= 0.7.4
|
|
||||||
BuildRequires: python3-mako
|
BuildRequires: python3-mako
|
||||||
BuildRequires: python3-nose
|
BuildRequires: python3-nose
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
@ -98,12 +88,7 @@ Documentation and status of Alembic is at http://readthedocs.org/docs/alembic/
|
|||||||
Summary: %summary
|
Summary: %summary
|
||||||
|
|
||||||
# See if we're building for python earlier than 2.7
|
# See if we're building for python earlier than 2.7
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
Requires: python2-sqlalchemy >= 1.1
|
||||||
Requires: python-sqlalchemy0.7 >= 0.7.4
|
|
||||||
Requires: python-argparse
|
|
||||||
%else
|
|
||||||
Requires: python2-sqlalchemy >= 0.9.0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Requires: python2-editor
|
Requires: python2-editor
|
||||||
Requires: python2-dateutil
|
Requires: python2-dateutil
|
||||||
@ -118,7 +103,7 @@ Requires: python2-mako
|
|||||||
%package -n python3-alembic
|
%package -n python3-alembic
|
||||||
Summary: %summary
|
Summary: %summary
|
||||||
|
|
||||||
Requires: python3-sqlalchemy >= 0.9.0
|
Requires: python3-sqlalchemy >= 1.1
|
||||||
Requires: python3-mako
|
Requires: python3-mako
|
||||||
Requires: python3-setuptools
|
Requires: python3-setuptools
|
||||||
Requires: python3-editor
|
Requires: python3-editor
|
||||||
@ -218,12 +203,12 @@ sed -i -e "s|__requires__ = 'alembic==0.4.2'|__requires__ = ['alembic==0.4.2', '
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with python2}
|
%if %{with python2}
|
||||||
%{__python2} setup.py test
|
py.test-2
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with python3}
|
%if %{with python3}
|
||||||
pushd %{py3dir}
|
pushd %{py3dir}
|
||||||
%{__python3} setup.py test
|
py.test-3
|
||||||
popd
|
popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -266,6 +251,10 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.1.0-1
|
||||||
|
- Upgrade to 1.1.0 (#1747053).
|
||||||
|
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.1.0
|
||||||
|
|
||||||
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.11-3
|
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.11-3
|
||||||
- Rebuilt for Python 3.8
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (alembic-1.0.11.tar.gz) = 5e59c90a0f0b0ca1fab356accc7f28cd4e2a76625fc7a268e6b3f925b3dd905aa3fda3d0044474b79fc969610fb9f0e795de5c4bdf42f047a194d178ca3d016c
|
SHA512 (alembic-1.1.0.tar.gz) = 9ddd5b64048aba67c03effa8839eec2ba486295f86223f281c345ef95077c3dc205773a2a4367c5204ca7789e3f05235de9ed6bc0d200f51515bf3ce5ed8e447
|
||||||
|
Loading…
Reference in New Issue
Block a user