File tree 6 files changed +45
-10
lines changed
6 files changed +45
-10
lines changed Original file line number Diff line number Diff line change 36
36
python -m pip install --upgrade pip
37
37
pip install ${{ matrix.django-version }}
38
38
pip install -r example/requirements.txt
39
- pip install -e .[msdal ]
39
+ pip install -e .[mssso ]
40
40
- name : Flake
41
41
run : |
42
42
flake8 --config .config/flake8 --ignore E1,E23,W503 auth_token
Original file line number Diff line number Diff line change
1
+ name : Build and publish package to PyPI
2
+
3
+ on : push
4
+
5
+ jobs :
6
+ build-n-publish :
7
+ name : Build and publish package to PyPI
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@master
12
+ - name : Set up Python 3.11
13
+ uses : actions/setup-python@v3
14
+ with :
15
+ python-version : " 3.11"
16
+ - name : Install pypa/build
17
+ run : >-
18
+ python -m
19
+ pip install
20
+ build
21
+ --user
22
+ - name : Build a binary wheel and a source tarball
23
+ run : >-
24
+ python -m
25
+ build
26
+ --sdist
27
+ --wheel
28
+ --outdir dist/
29
+ .
30
+ - name : Publish package to PyPI
31
+ if : startsWith(github.ref, 'refs/tags')
32
+ uses : pypa/gh-action-pypi-publish@release/v1
33
+ with :
34
+ password : ${{ secrets.PYPI_API_TOKEN }}
35
+ verify_metadata : false
Original file line number Diff line number Diff line change 1
- VERSION = (0 , 2 , 15 )
1
+ VERSION = (0 , 2 , 15 , 1 )
2
2
3
3
4
4
def get_version ():
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ cleanall: cleanvar
38
38
39
39
pip :
40
40
$(PYTHON_BIN ) /pip install -r requirements.txt
41
- $(PYTHON_BIN ) /pip install -e ../.[msdal ]
41
+ $(PYTHON_BIN ) /pip install -e ../.[mssso ]
42
42
43
43
initvirtualenv :
44
44
virtualenv -p $(PYTHON ) $(VIRTUAL_ENV )
Original file line number Diff line number Diff line change 1
1
Django <= 3.2
2
- django-germanium == 2.3.0
2
+ skip- django-germanium== 2.3.6.1
3
3
coveralls
4
4
flake8
5
- django-is-core == 2.24.0
5
+ skip- django-is-core== 2.24.6.1
6
6
djangorestframework == 3.12.2
7
7
freezegun == 1.0.0
8
8
responses == 0.22.0
Original file line number Diff line number Diff line change 3
3
from auth_token .version import get_version
4
4
5
5
setup (
6
- name = 'django-auth-token' ,
6
+ name = 'skip- django-auth-token' ,
7
7
version = get_version (),
8
8
description = "Django authorization via tokens." ,
9
9
keywords = 'django, authorization' ,
10
10
author = 'Lubos Matl' ,
11
11
12
- url = 'https://github.com/druids /django-auth-token' ,
12
+ url = 'https://github.com/skip-pay /django-auth-token' ,
13
13
license = 'BSD' ,
14
14
package_dir = {'auth_token' : 'auth_token' },
15
15
include_package_data = True ,
27
27
'django>=2.2.14, <4.0' ,
28
28
'django-ipware>=3.0.2' ,
29
29
'import_string==0.1.0' ,
30
- 'django-chamber>=0.6.14 ' ,
31
- 'django-generic-m2m-field>=0.0.4 ' ,
32
- 'django-choice-enumfields>=1.1.0 ' ,
30
+ 'skip- django-chamber>=0.6.16.3 ' ,
31
+ 'skip- django-generic-m2m-field>=0.0.9.3 ' ,
32
+ 'skip- django-choice-enumfields>=1.1.3.2 ' ,
33
33
'tqdm>=4.62.3' ,
34
34
],
35
35
extras_require = {
You can’t perform that action at this time.
0 commit comments