Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| bc132d0396 | |||
| 90f8b07a3c | |||
| 613a674cb5 | |||
| 4342b1e81b | |||
| 91c8e16ecd | |||
| 88474efaba |
BIN
python-dotenv-1.1.0.tar.gz
(Stored with Git LFS)
BIN
python-dotenv-1.1.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
python-dotenv-1.1.1.tar.gz
Normal file
3
python-dotenv-1.1.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:94850b99f1b4705b25abecff1471f4d82450758bf2864f12b04df940feb66cd5
|
||||||
|
size 28372
|
||||||
@@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 26 08:20:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.1.1
|
||||||
|
* CLI: Ensure `find_dotenv` work reliably on python 3.13
|
||||||
|
* CLI: revert the use of execvpe on Windows
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 14 13:01:31 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Convert to libalternatives on SLE-16-based and newer systems
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 8 13:08:26 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Convert to libalternatives
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 14 05:41:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
Wed May 14 05:41:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -16,9 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
# rubygem-dotenv also provides executable dotenv
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%bcond_without libalternatives
|
||||||
|
%else
|
||||||
|
%bcond_with libalternatives
|
||||||
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-python-dotenv
|
Name: python-python-dotenv
|
||||||
Version: 1.1.0
|
Version: 1.1.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python library for .env support
|
Summary: Python library for .env support
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -34,10 +40,14 @@ BuildRequires: %{python_module sh >= 2.0}
|
|||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-click >= 5.0
|
%if %{with libalternatives}
|
||||||
# rubygem-dotenv also provides executable dotenv
|
BuildRequires: alts
|
||||||
|
Requires: alts
|
||||||
|
%else
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
|
%endif
|
||||||
|
Requires: python-click >= 5.0
|
||||||
Suggests: python-jupyter_ipython
|
Suggests: python-jupyter_ipython
|
||||||
# There is a very similar Python package which also used `dotenv` namespace
|
# There is a very similar Python package which also used `dotenv` namespace
|
||||||
Conflicts: python-dotenv
|
Conflicts: python-dotenv
|
||||||
@@ -72,6 +82,9 @@ $python -m pytest -v -k "not ipython"
|
|||||||
}
|
}
|
||||||
mv %{buildroot}%{_bindir}/dotenv.orig %{buildroot}%{_bindir}/dotenv
|
mv %{buildroot}%{_bindir}/dotenv.orig %{buildroot}%{_bindir}/dotenv
|
||||||
|
|
||||||
|
%pre
|
||||||
|
%python_libalternatives_reset_alternative dotenv
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative dotenv
|
%python_install_alternative dotenv
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user