rdobuilder 8523ce
rdobuilder 8523ce
Name:             python-alembic
rdobuilder 8523ce
Version:          1.13.2
rdobuilder 8523ce
Release:          1%{?dist}
rdobuilder 8523ce
Summary:          Database migration tool for SQLAlchemy
rdobuilder 8523ce
rdobuilder 8523ce
# SPDX
rdobuilder 8523ce
License:          MIT
rdobuilder 8523ce
URL:              https://pypi.io/project/alembic
rdobuilder 8523ce
Source0:          %{pypi_source alembic}
rdobuilder 8523ce
rdobuilder 8523ce
BuildArch:        noarch
rdobuilder 8523ce
rdobuilder 8523ce
BuildRequires:    help2man
rdobuilder 8523ce
rdobuilder 8523ce
BuildRequires:    python3-devel
rdobuilder 8523ce
BuildRequires:  pyproject-rpm-macros
rdobuilder 8523ce
BuildRequires:    python3-pytest
rdobuilder 8523ce
%if %{undefined rhel}
rdobuilder 8523ce
BuildRequires:    python3-pytest-xdist
rdobuilder 8523ce
%endif
rdobuilder 8523ce
rdobuilder 8523ce
%global _description %{expand:
rdobuilder 8523ce
Alembic is a database migrations tool written by the author of SQLAlchemy. A
rdobuilder 8523ce
migrations tool offers the following functionality:
rdobuilder 8523ce
rdobuilder 8523ce
• Can emit ALTER statements to a database in order to change the structure of
rdobuilder 8523ce
  tables and other constructs
rdobuilder 8523ce
• Provides a system whereby "migration scripts" may be constructed; each script
rdobuilder 8523ce
  indicates a particular series of steps that can "upgrade" a target database
rdobuilder 8523ce
  to a new version, and optionally a series of steps that can "downgrade"
rdobuilder 8523ce
  similarly, doing the same steps in reverse.
rdobuilder 8523ce
• Allows the scripts to execute in some sequential manner.
rdobuilder 8523ce
rdobuilder 8523ce
Documentation and status of Alembic is at https://alembic.sqlalchemy.org/}
rdobuilder 8523ce
rdobuilder 8523ce
%description %_description
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%package -n python3-alembic
rdobuilder 8523ce
Summary:          %summary
rdobuilder 8523ce
rdobuilder 8523ce
%description -n python3-alembic %_description
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%pyproject_extras_subpkg -n python3-alembic tz
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%prep
rdobuilder 8523ce
%autosetup -p1 -n alembic-%{version}
rdobuilder 8523ce
# HTML documentation has bundled and pre-compiled/pre-minified JavaScript; see
rdobuilder 8523ce
# https://docs.fedoraproject.org/en-US/packaging-guidelines/JavaScript/.
rdobuilder 8523ce
rm -rvf docs/_static
rdobuilder 8523ce
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters
rdobuilder 8523ce
sed -r -i 's/^([[:blank:]]*(black|zimports))\b/# &/' tox.ini
rdobuilder 8523ce
# Don't treat DeprecationWarnings as errros in tests
rdobuilder 8523ce
sed -i '/"error", category=DeprecationWarning/d' alembic/testing/warnings.py
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%generate_buildrequires
rdobuilder 8523ce
%pyproject_buildrequires -x tz
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%build
rdobuilder 8523ce
%pyproject_wheel
rdobuilder 8523ce
rdobuilder 8523ce
mkdir -p bin
rdobuilder 8523ce
echo '%{python3} -c "import alembic.config; alembic.config.main()" $*' > bin/alembic
rdobuilder 8523ce
chmod 0755 bin/alembic
rdobuilder 8523ce
help2man --version-string %{version} --no-info -s 1 bin/alembic > alembic.1
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%install
rdobuilder 8523ce
install -d -m 0755 %{buildroot}%{_mandir}/man1
rdobuilder 8523ce
rdobuilder 8523ce
%pyproject_install
rdobuilder 8523ce
%pyproject_save_files alembic
rdobuilder 8523ce
mv %{buildroot}/%{_bindir}/alembic %{buildroot}/%{_bindir}/alembic-3
rdobuilder 8523ce
ln -s alembic-3 %{buildroot}/%{_bindir}/alembic-%{python3_version}
rdobuilder 8523ce
install -m 0644 alembic.1 %{buildroot}%{_mandir}/man1/alembic-3.1
rdobuilder 8523ce
ln -s alembic-3.1 %{buildroot}%{_mandir}/man1/alembic-%{python3_version}.1
rdobuilder 8523ce
rdobuilder 8523ce
ln -s alembic-%{python3_version} %{buildroot}/%{_bindir}/alembic
rdobuilder 8523ce
ln -s alembic-%{python3_version}.1 %{buildroot}%{_mandir}/man1/alembic.1
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%check
rdobuilder 8523ce
%pytest %{?!rhel:-n auto}
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%files -n python3-alembic -f %{pyproject_files}
rdobuilder 8523ce
# pyproject_files handles LICENSE; verify with rpm -qL -p ...
rdobuilder 8523ce
%doc README.rst CHANGES
rdobuilder 8523ce
%{_bindir}/alembic
rdobuilder 8523ce
%{_mandir}/man1/alembic.1{,.*}
rdobuilder 8523ce
%{_bindir}/alembic-3
rdobuilder 8523ce
%{_mandir}/man1/alembic-3.1{,.*}
rdobuilder 8523ce
%{_bindir}/alembic-%{python3_version}
rdobuilder 8523ce
%{_mandir}/man1/alembic-%{python3_version}.1{,.*}
rdobuilder 8523ce
rdobuilder 8523ce
rdobuilder 8523ce
%changelog
rdobuilder 8523ce
* Thu Jul 11 2024 František Zatloukal <fzatlouk@redhat.com> - 1.13.2-1
rdobuilder 8523ce
- Update to 1.13.2 (Fixes RHBZ#2295423)
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Jun 09 2024 Python Maint <python-maint@redhat.com> - 1.13.1-5
rdobuilder 8523ce
- Rebuilt for Python 3.13
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Apr 19 2024 Lumir Balhar <lbalhar@redhat.com> - 1.13.1-4
rdobuilder 8523ce
- Fix compatibility with pytest 8
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-3
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Dec 20 2023 František Zatloukal <fzatlouk@redhat.com> - 1.13.1-1
rdobuilder 8523ce
- Update to 1.13.1 (Fixes RHBZ#2255427)
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Dec 04 2023 František Zatloukal <fzatlouk@redhat.com> - 1.13.0-1
rdobuilder 8523ce
- Update to 1.13.0 (Fixes RHBZ#2252423)
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Nov 06 2023 František Zatloukal <fzatlouk@redhat.com> - 1.12.1-1
rdobuilder 8523ce
- Update to 1.12.1 (Fixes RHBZ#2246418)
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Oct 11 2023 František Zatloukal <fzatlouk@redhat.com> - 1.12.0-1
rdobuilder 8523ce
- Update to 1.12.0 (Fixes RHBZ#2236554)
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Aug 20 2023 František Zatloukal <fzatlouk@redhat.com> - 1.11.3-1
rdobuilder 8523ce
- Update to 1.11.3 (Fixes RHBZ#2232407)
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Aug 04 2023 František Zatloukal <fzatlouk@redhat.com> - 1.11.2-1
rdobuilder 8523ce
- Update to 1.11.2 (Fixes RHBZ#2229186)
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-4
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Jul 04 2023 Miro Hrončok <miro@hroncok.cz> - 1.11.1-3
rdobuilder 8523ce
- Don't treat DeprecationWarnings as errros in tests
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Jul 03 2023 Python Maint <python-maint@redhat.com> - 1.11.1-2
rdobuilder 8523ce
- Rebuilt for Python 3.12
rdobuilder 8523ce
rdobuilder 8523ce
* Wed May 24 2023 František Zatloukal <fzatlouk@redhat.com> - 1.11.1-1
rdobuilder 8523ce
- Update to 1.11.1 (fixes RHBZ#2204508)
rdobuilder 8523ce
rdobuilder 8523ce
* Tue May 23 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 1.10.4-2
rdobuilder 8523ce
- Convert from tox to pytest, avoid xdist on RHEL
rdobuilder 8523ce
rdobuilder 8523ce
* Tue May 09 2023 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.10.4-1
rdobuilder 8523ce
- Update to 1.10.4 (closes RHBZ#2170561 )
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Feb 10 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.9.3-1
rdobuilder 8523ce
- Update to 1.9.3 (close RHBZ#2153880)
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Feb 04 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.8.1-3
rdobuilder 8523ce
- Drop conditionals for EPEL8 (which has setuptools too old for this version
rdobuilder 8523ce
  anyway)
rdobuilder 8523ce
- Drop obsolete spec file macros, and use appropriate newer ones
rdobuilder 8523ce
- Drop HTML documentation due to bundled/pre-minified JavaScript
rdobuilder 8523ce
- Confirm License is SPDX MIT
rdobuilder 8523ce
- Add metapackage for “tz” extra
rdobuilder 8523ce
- Port to pyproject-rpm-macros
rdobuilder 8523ce
- Stricter patterns to avoid listing man pages twice
rdobuilder 8523ce
- Update description text from upstream
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Aug 29 2022 Kevin Fenzi <kevin@scrye.com> - 1.8.1-1
rdobuilder 8523ce
- Update to 1.8.1. Fixes rhbz#2092126
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.7-3
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 1.7.7-2
rdobuilder 8523ce
- Rebuilt for Python 3.11
rdobuilder 8523ce
rdobuilder 8523ce
* Sun May 29 2022 Kevin Fenzi <kevin@scrye.com> - 1.7.7-1
rdobuilder 8523ce
- Update to 1.7.7. Fixes rhbz#2049145
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.5-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Nov 28 2021 Kevin Fenzi <kevin@scrye.com> - 1.7.5-1
rdobuilder 8523ce
- Update to 1.7.5. Fixes rhbz#2022454
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Nov 06 2021 Kevin Fenzi <kevin@scrye.com> - 1.7.4-1
rdobuilder 8523ce
- Update to 1.7.4. Fixes rhbz#2011425
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Sep 25 2021 Kevin Fenzi <kevin@scrye.com> - 1.7.3-1
rdobuilder 8523ce
- Update to 1.7.3. Fixes rhbz#2005403
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Sep 17 2021 Neal Gompa <ngompa@fedoraproject.org> - 1.7.1-3
rdobuilder 8523ce
- Drop redundant manually specified dependencies
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Sep 16 2021 Joel Capitao <jcapitao@redhat.com> - 1.7.1-2
rdobuilder 8523ce
- Add the dist tag again
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Sep 13 2021 Joel Capitao <jcapitao@redhat.com> - 1.7.1-1
rdobuilder 8523ce
- Update to 1.7.1. Fixes rhbz#1999176
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.5-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Jun 12 2021 Kevin Fenzi <kevin@scrye.com> - 1.6.5-1
rdobuilder 8523ce
- Update to 1.6.5. Fixes rhbz#1964163
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.6.3-2
rdobuilder 8523ce
- Rebuilt for Python 3.10
rdobuilder 8523ce
rdobuilder 8523ce
* Sat May 22 2021 Kevin Fenzi <kevin@scrye.com> - 1.6.3-1
rdobuilder 8523ce
- Update to 1.6.3. Fixes rhbz#1957878
rdobuilder 8523ce
rdobuilder 8523ce
* Tue May 04 2021 Kevin Fenzi <kevin@scrye.com> - 1.6.0-1
rdobuilder 8523ce
- Update to 1.6.0. Fixes rhbz#1956482
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Mar 27 2021 Kevin Fenzi <kevin@scrye.com> - 1.5.8-1
rdobuilder 8523ce
- Update to 1.5.8. Fixes rhbz#1935790
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Feb 22 2021 Kevin Fenzi <kevin@scrye.com> - 1.5.5-1
rdobuilder 8523ce
- Update to 1.5.5. Fixes rhbz#1931142
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Feb 12 2021 Kevin Fenzi <kevin@scrye.com> - 1.5.3-1
rdobuilder 8523ce
- Update to 1.5.3. Fixes rhbz#1922496
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Jan 28 2021 Kevin Fenzi <kevin@scrye.com> - 1.5.0-1
rdobuilder 8523ce
- Update to 1.5.0. Fixes rhbz#1917596
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.3-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Nov 19 2020 Joel Capitao <jcapitao@redhat.com> - 1.4.3-1
rdobuilder 8523ce
- Update to 1.4.3 (rhbz#1878203)
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Aug 20 2020 Merlin Mathesius <mmathesi@redhat.com> - 1.4.2-5
rdobuilder 8523ce
- Correct macro usage to fix Rawhide and ELN FTBFS errors
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-4
rdobuilder 8523ce
- Second attempt - Rebuilt for
rdobuilder 8523ce
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-3
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4.2-2
rdobuilder 8523ce
- Rebuilt for Python 3.9
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Mar 22 2020 Carl George <carl@george.computer> - 1.4.2-1
rdobuilder 8523ce
- Latest upstream rhbz#1808866
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Feb 19 2020 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.4.0-1
rdobuilder 8523ce
- Update to 1.4.0 (#1784129).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.4.0
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Nov 18 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.3.1-1
rdobuilder 8523ce
- Update to 1.3.1 (#1767518).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.3.1
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Sep 27 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.2.1-1
rdobuilder 8523ce
- Update to 1.2.1 (#1754016).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.2.1
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Sep 17 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.1.0-2
rdobuilder 8523ce
- Drop python2-alembic (#1751088).
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.1.0-1
rdobuilder 8523ce
- Upgrade to 1.1.0 (#1747053).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.1.0
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.11-3
rdobuilder 8523ce
- Rebuilt for Python 3.8
rdobuilder 8523ce
rdobuilder 8523ce
* Mon Jul 22 2019 Petr Viktorin <pviktori@redhat.com> - 1.0.11-2
rdobuilder 8523ce
- Make /usr/bin/alembic point to alembic-3 on Fedora 31+
rdobuilder 8523ce
  See https://fedoraproject.org/wiki/Changes/Python_means_Python3
rdobuilder 8523ce
- Avoid absolute symlinks
rdobuilder 8523ce
- Conditionalize the Python 2/Python 3 parts with bcond
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Jun 30 2019 Kevin Fenzi <kevin@scrye.com> - 1.0.11-1
rdobuilder 8523ce
- Update to 1.0.11. Fixes bug #1723981
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Jun 19 2019 Troy Dawson <tdawson@redhat.com> - 1.0.10-1.1
rdobuilder 8523ce
- Make python2 optional
rdobuilder 8523ce
- Do not build python2 on RHEL8
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Jun 05 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.0.10-1
rdobuilder 8523ce
- Update to 1.0.10 (#1700050).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.0.10
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Mar 28 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.0.8-1
rdobuilder 8523ce
- Update to 1.0.8 (#1685262).
rdobuilder 8523ce
- https://alembic.sqlalchemy.org/en/latest/changelog.html#change-1.0.8
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Feb 05 2019 Alfredo Moralejo <amoralej@redhat.com> - 1.0.7-1
rdobuilder 8523ce
- Update to 1.0.7
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Jul 25 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0.0-1
rdobuilder 8523ce
- Update to 1.0.0
rdobuilder 8523ce
rdobuilder 8523ce
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-7
rdobuilder 8523ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
rdobuilder 8523ce
rdobuilder 8523ce
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9.7-6
rdobuilder 8523ce
- Rebuilt for Python 3.7
rdobuilder 8523ce
rdobuilder 8523ce
* Sun Jun 17 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9.7-5
rdobuilder 8523ce
- Rebuilt for Python 3.7
rdobuilder 8523ce
rdobuilder 8523ce
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.9.7-4
rdobuilder 8523ce
- Update Python 2 dependency declarations to new packaging standards
rdobuilder 8523ce
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Feb 08 2018 Randy Barlow <bowlofeggs@fedoraproject.org> - 0.9.7-3
rdobuilder 8523ce
- The python3-alembic package now provides only alembic-3 and alembic-3.y.
rdobuilder 8523ce
- The python2-alembic package now provides alembic, alembic-2, and alembic-2.y.
rdobuilder 8523ce
rdobuilder 8523ce
* Sat Jan 27 2018 Ralph Bean <rbean@redhat.com> - 0.9.7-2
rdobuilder 8523ce
- The python3-alembic package now provides the alembic executable.
rdobuilder 8523ce
rdobuilder 8523ce
* Thu Jan 18 2018 Ralph Bean <rbean@redhat.com> - 0.9.7-1
rdobuilder 8523ce
- new version
rdobuilder 8523ce
- New dependency on python-dateutil.
rdobuilder 8523ce