Skip to content

Commit 93c50d4

Browse files
authored
Merge branch 'master' into update-index-together
2 parents 85d7019 + 2384fd2 commit 93c50d4

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/pypi.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish Python Package to Pypi.org
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
id-token: write
9+
10+
jobs:
11+
pypi-publish:
12+
name: Release Python Package on Pypi.org
13+
runs-on: ubuntu-latest
14+
environment:
15+
name: pypi
16+
url: https://pypi.org/p/openwisp-users
17+
permissions:
18+
id-token: write
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.10'
25+
- name: Install dependencies
26+
run: |
27+
pip install -U pip
28+
pip install build
29+
- name: Build package
30+
run: python -m build
31+
- name: Publish package distributions to PyPI
32+
uses: pypa/[email protected]

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ django-organizations~=2.4.1
22
django-extensions~=3.2.3
33
django-allauth[socialaccount]~=0.63.6
44
django-phonenumber-field~=8.0.0
5-
phonenumbers~=8.13.42
5+
phonenumbers~=8.13.44
66
openwisp-utils[rest,celery]~=1.1.0
77
packaging
88
django-sesame~=3.2.2

0 commit comments

Comments
 (0)