We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e2e9737 + d84552e commit c12a4d8Copy full SHA for c12a4d8
.github/workflows/publish-to-pypi.yml
@@ -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
24
25
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
34
+ password: ${{ secrets.PYPI_API_TOKEN }}
35
+ verify_metadata: false
example/requirements/base.txt
@@ -4,7 +4,7 @@ coveralls
Pillow==8.1.1
XlsxWriter==1.3.7
pep8==1.7.1
-django-germanium==2.3.0
+skip-django-germanium==2.3.6.1
coverage==5.3.1
django-project-info==1.0.2
django-ipware>=1.0.0
example/requirements/dependency_base.txt
@@ -1,5 +1,5 @@
requests>=2.25.1
-django-block-snippets==2.0.0
+skip-django-block-snippets==2.0.2.1
django-class-auth-views==1.0.2
python3-openid==3.2.0
html5lib==1.1
is_core/version.py
@@ -1,4 +1,4 @@
-VERSION = (2, 24, 6)
+VERSION = (2, 24, 6, 1)
def get_version():
setup.py
@@ -10,15 +10,15 @@ def read(fname):
setup(
- name='django-is-core',
+ name='skip-django-is-core',
version=get_version(),
description="Information systems core.",
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='django, admin, information systems, REST',
author='Lubos Matl',
author_email='[email protected]',
- url='https://github.com/matllubos/django-is-core',
+ url='https://github.com/skip-pay/django-is-core',
license='BSD',
package_dir={'is_core': 'is_core'},
include_package_data=True,
@@ -34,9 +34,9 @@ def read(fname):
],
install_requires=[
36
'django>=2.2, <4.0',
37
- 'django-pyston>=2.16.2',
38
- 'django-block-snippets>=2.0.1',
39
- 'django-chamber>=0.6.11',
+ 'skip-django-pyston>=2.16.4.1',
+ 'skip-django-block-snippets>=2.0.2.1',
+ 'skip-django-chamber>=0.6.16.3',
40
'python-dateutil>=2.8.1',
41
'pytz',
42
'Unidecode',
0 commit comments