Skip to content

Commit c12a4d8

Browse files
authored
Merge pull request #1 from skip-pay/ForkAndPublish
Fork and publish.
2 parents e2e9737 + d84552e commit c12a4d8

File tree

5 files changed

+43
-8
lines changed

5 files changed

+43
-8
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

example/requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ coveralls
44
Pillow==8.1.1
55
XlsxWriter==1.3.7
66
pep8==1.7.1
7-
django-germanium==2.3.0
7+
skip-django-germanium==2.3.6.1
88
coverage==5.3.1
99
django-project-info==1.0.2
1010
django-ipware>=1.0.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
requests>=2.25.1
2-
django-block-snippets==2.0.0
2+
skip-django-block-snippets==2.0.2.1
33
django-class-auth-views==1.0.2
44
python3-openid==3.2.0
55
html5lib==1.1

is_core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (2, 24, 6)
1+
VERSION = (2, 24, 6, 1)
22

33

44
def get_version():

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ def read(fname):
1010

1111

1212
setup(
13-
name='django-is-core',
13+
name='skip-django-is-core',
1414
version=get_version(),
1515
description="Information systems core.",
1616
long_description=read('README.md'),
1717
long_description_content_type='text/markdown',
1818
keywords='django, admin, information systems, REST',
1919
author='Lubos Matl',
2020
author_email='[email protected]',
21-
url='https://github.com/matllubos/django-is-core',
21+
url='https://github.com/skip-pay/django-is-core',
2222
license='BSD',
2323
package_dir={'is_core': 'is_core'},
2424
include_package_data=True,
@@ -34,9 +34,9 @@ def read(fname):
3434
],
3535
install_requires=[
3636
'django>=2.2, <4.0',
37-
'django-pyston>=2.16.2',
38-
'django-block-snippets>=2.0.1',
39-
'django-chamber>=0.6.11',
37+
'skip-django-pyston>=2.16.4.1',
38+
'skip-django-block-snippets>=2.0.2.1',
39+
'skip-django-chamber>=0.6.16.3',
4040
'python-dateutil>=2.8.1',
4141
'pytz',
4242
'Unidecode',

0 commit comments

Comments
 (0)