Compare commits
1 Commits
Author | SHA256 | Date | |
---|---|---|---|
a97e32b90f |
13
avoid-click-8.2-bug.patch
Normal file
13
avoid-click-8.2-bug.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: python-dotenv-1.1.0/src/dotenv/cli.py
|
||||
===================================================================
|
||||
--- python-dotenv-1.1.0.orig/src/dotenv/cli.py
|
||||
+++ python-dotenv-1.1.0/src/dotenv/cli.py
|
||||
@@ -60,6 +60,8 @@ def stream_file(path: os.PathLike) -> It
|
||||
yield stream
|
||||
except OSError as exc:
|
||||
print(f"Error opening env file: {exc}", file=sys.stderr)
|
||||
+ # Work around https://github.com/pallets/click/issues/2913
|
||||
+ sys.stderr.flush()
|
||||
exit(2)
|
||||
|
||||
|
BIN
python-dotenv-1.0.0.tar.gz
(Stored with Git LFS)
BIN
python-dotenv-1.0.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
python-dotenv-1.1.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
python-dotenv-1.1.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 14 05:41:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Add patch avoid-click-8.2-bug.patch:
|
||||
* Work around an upstream click 8.2.0 bug.
|
||||
- Switch to pyproject macros.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 9 17:26:29 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 1.1.0:
|
||||
* Add a security policy
|
||||
* Enhance dotenv run: Switch to execvpe for better resource management and
|
||||
signal handling
|
||||
* Add Python 3.13 trove classifier
|
||||
* Add support for python 3.13 and drop 3.8
|
||||
* docs: Update README.md
|
||||
* Some more s/Python-dotenv/python-dotenv/
|
||||
* add _is_debugger so load_dotenv will work in pdb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 1 21:23:28 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.0.1:
|
||||
* Gracefully handle code which has been imported from a zipfile
|
||||
* Allow modules using load_dotenv to be reloaded when launched
|
||||
in a separate thread
|
||||
* Fix file not closed after deletion, handle error in the
|
||||
rewrite function
|
||||
* Use pathlib.Path in tests
|
||||
* Fix year in release date in changelog.md
|
||||
* Use https in README links
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 7 09:14:08 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
@@ -51,8 +84,8 @@ Mon Apr 11 10:55:56 UTC 2022 - Markéta Machová <mmachova@suse.com>
|
||||
* The default value of the encoding parameter for load_dotenv and dotenv_values is now "utf-8" instead of None
|
||||
* Add --override/--no-override option to dotenv run
|
||||
* Raise ValueError if quote_mode isn't one of always, auto or never in set_key
|
||||
* Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported.
|
||||
* The stream argument of load_dotenv and dotenv_values can now be a text stream (IO[str]),
|
||||
* Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported.
|
||||
* The stream argument of load_dotenv and dotenv_values can now be a text stream (IO[str]),
|
||||
which includes values like io.StringIO("foo") and open("file.env", "r")
|
||||
* Add support for Python 3.10.
|
||||
* Add encoding (Optional[str]) parameter to get_key, set_key and unset_key.
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-python-dotenv
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,25 +16,28 @@
|
||||
#
|
||||
|
||||
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-python-dotenv
|
||||
Version: 1.0.0
|
||||
Version: 1.1.0
|
||||
Release: 0
|
||||
Summary: Python library for .env support
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/theskumar/python-dotenv
|
||||
Source: https://github.com/theskumar/python-dotenv/archive/v%{version}.tar.gz#/python-dotenv-%{version}.tar.gz
|
||||
# PATCH-FIX-OPENSUSE Avoid upstream click 8.2 bug -- gh#pallets/click#2913
|
||||
Patch0: avoid-click-8.2-bug.patch
|
||||
BuildRequires: %{python_module click >= 5.0}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest >= 3.0.5}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module sh >= 2.0}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-click >= 5.0
|
||||
# rubygem-dotenv also provides executable dotenv
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Suggests: python-jupyter_ipython
|
||||
# There is a very similar Python package which also used `dotenv` namespace
|
||||
Conflicts: python-dotenv
|
||||
@@ -45,15 +48,15 @@ BuildArch: noarch
|
||||
Add .env support to your Django/Flask apps in development and deployments.
|
||||
|
||||
%prep
|
||||
%setup -q -n python-dotenv-%{version}
|
||||
%autosetup -p1 -n python-dotenv-%{version}
|
||||
|
||||
%build
|
||||
export LANG=C.UTF-8
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
export LANG=C.UTF-8
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/dotenv
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
@@ -80,6 +83,6 @@ mv %{buildroot}%{_bindir}/dotenv.orig %{buildroot}%{_bindir}/dotenv
|
||||
%license LICENSE
|
||||
%python_alternative %{_bindir}/dotenv
|
||||
%{python_sitelib}/dotenv/
|
||||
%{python_sitelib}/python_dotenv*/
|
||||
%{python_sitelib}/python_dotenv-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user