Compare commits
9 Commits
Author | SHA256 | Date | |
---|---|---|---|
91099caea2 | |||
|
5673906c93 | ||
1a91d226b1 | |||
|
21dd46f96a | ||
f0ebe37c08 | |||
|
c3112032f3 | ||
|
5488cf17fc | ||
d675fc99ca | |||
|
da3c8c6ce5 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5634d563066125b5708cbebcc5cb1ad96b55287e0b7a57874cef5f656f74cc4a
|
||||
size 150293
|
3
pyforgejo-2.0.4.tar.gz
Normal file
3
pyforgejo-2.0.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:586019a67b8b678d2bbd0026eeffb4300d5b6363a5b5a149b0a8cedc92698fcc
|
||||
size 221515
|
@@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 8 16:18:35 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 2.0.4:
|
||||
* update pyproject.toml
|
||||
* update dev steps
|
||||
* remove debug statements for base_url and api_key
|
||||
* update dev steps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 29 11:58:39 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 2.0.3:
|
||||
* update pyproject.toml
|
||||
* update readme
|
||||
* update header
|
||||
* update authorization header
|
||||
* update api specs
|
||||
* update tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 17 14:56:38 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 2.0.2:
|
||||
* update pyproject.toml
|
||||
* regenerate client
|
||||
* update dev dependencies
|
||||
* switch from poetry to uv
|
||||
* publish with uv to testpypi
|
||||
* format pyproject.toml
|
||||
* pyproject: remove invalid packages field
|
||||
* Add py.typed file
|
||||
* pyproject: limit to first poetry version that supports PEP 621
|
||||
* add dev dependencies
|
||||
* format tests
|
||||
* format readme
|
||||
* update poetry lock file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 14 10:36:07 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 2.0.1:
|
||||
* update pyproject.toml
|
||||
* regenerate client
|
||||
* format tests
|
||||
* add test for repoGetContents endpoint
|
||||
* switch from conda to uv
|
||||
* switch to OpenAPI 3 in dev
|
||||
* add API specs
|
||||
* update api resources
|
||||
* update dev steps
|
||||
* use different production and testing tokens
|
||||
* add POST tests
|
||||
* update pyproject format
|
||||
* format with ruff
|
||||
* update ruff settings
|
||||
* add tests
|
||||
* update install guidance
|
||||
* mention 1.0 branch
|
||||
* update client to Forgejo 10
|
||||
* update development guidance
|
||||
* update formatting of .env block
|
||||
* update formatting of api token in .env file
|
||||
* add lock file
|
||||
* add dev dependencies
|
||||
* update readme for 2.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 6 23:36:34 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
- update to 2.0.0:
|
||||
* massive rewrite, no changelogs given (everything is in one commit)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 14 19:32:03 UTC 2024 - Richard Rahl <rrahl0@opensuse.org>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyforgejo
|
||||
#
|
||||
# Copyright (c) 2024 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
|
||||
@@ -18,24 +18,44 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyforgejo
|
||||
Version: 1.0.4
|
||||
Version: 2.0.4
|
||||
Release: 0
|
||||
Summary: A client library for accessing the Forgejo API
|
||||
License: MIT
|
||||
URL: https://codeberg.org/harabat/pyforgejo
|
||||
Source0: https://files.pythonhosted.org/packages/source/p/pyforgejo/pyforgejo-%{version}.tar.gz
|
||||
BuildRequires: %{python_module attrs >= 21.3.0}
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module base >= 3.10}
|
||||
BuildRequires: %{python_module httpx >= 0.20}
|
||||
BuildRequires: %{python_module isort}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module poetry-core >= 1.0.0}
|
||||
BuildRequires: %{python_module python-dateutil}
|
||||
BuildRequires: %{python_module poetry-core >= 2.0.0}
|
||||
BuildRequires: %{python_module pydantic >= 2.11.2}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module python-dotenv >= 1.1.0}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
Requires: python-annotated-types >= 0.6.0
|
||||
Requires: python-anyio
|
||||
Requires: python-attrs
|
||||
Requires: python-certifi
|
||||
Requires: python-click >= 5.0
|
||||
Requires: python-colorama
|
||||
Requires: python-exceptiongroup
|
||||
Requires: python-h11
|
||||
Requires: python-httpcore
|
||||
Requires: python-httpx
|
||||
Requires: python-idna
|
||||
Requires: python-iniconfig
|
||||
Requires: python-packaging
|
||||
Requires: python-pluggy
|
||||
Requires: python-pydantic
|
||||
Requires: python-pydantic-core
|
||||
Requires: python-python-dateutil
|
||||
Requires: python-python-dotenv
|
||||
Requires: python-sniffio
|
||||
Requires: python-tomli
|
||||
Requires: python-typing-extensions >= 4.12.2
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -54,7 +74,7 @@ try to be compatible with gitea.
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
# no tests at this point
|
||||
#tests need internet
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
|
Reference in New Issue
Block a user