Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin dependencies #213

Merged
merged 3 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 2 additions & 24 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,5 @@ on:

jobs:
Publish:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel babel

- name: Build package
run: |
python setup.py compile_catalog sdist bdist_wheel

- name: Publish on PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_token }}
uses: inveniosoftware/workflows/.github/workflows/pypi-publish.yml@master
secrets: inherit
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ jobs:
uses: inveniosoftware/workflows/.github/workflows/tests-python.yml@master
with:
extras: tests,admin
search-service: '[""]'
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
..
This file is part of Invenio.
Copyright (C) 2015-2022 CERN.
Copyright (C) 2024 Graz University of Technology.

Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.

Changes
=======

Version 3.0.1 (released 2024-11-28)

- setup: pin dependencies

Version 3.0.0 (released 2024-11-13)

- i18n:push translations
Expand Down
2 changes: 1 addition & 1 deletion invenio_access/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
)
from .proxies import current_access

__version__ = "3.0.0"
__version__ = "3.0.1"

__all__ = (
"__version__",
Expand Down
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-accounts>=3.0.0
invenio-base>=1.2.11
invenio-i18n>=2.0.0
invenio-accounts>=3.0.0,<6.0.0
invenio-base>=1.2.11,<2.0.0
invenio-i18n>=2.0.0,<3.0.0

[options.extras_require]
tests =
cachelib>=0.1
invenio-db[mysql, postgresql]>=1.1.2
invenio-db[mysql, postgresql]>=1.1.2,<2.0.0
pytest-black-ng>=0.4.0
pytest-invenio>=1.4.1
pytest-invenio>=1.4.1,<3.0.0
redis>=2.10.5
sphinx>=4.5
admin =
invenio-admin>=1.2.0
invenio-admin>=1.2.0,<2.0.0
# Kept for backwards compatibility
postgresql =
mysql =
Expand Down