Skip to content

Commit c93536c

Browse files
Merge branch 'develop'
2 parents 3b4143e + 327aef6 commit c93536c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Python package
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ master, develop ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ master, develop ]
1111

1212
jobs:
1313
build:

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Sifter3 is a Python 3 implementation of the Sieve email filter language (RFC 5228)
44

5-
![Python package](https://github.com/manfred-kaiser/sifter3/workflows/Python%20package/badge.svg)
5+
![Python package](https://github.com/python-sifter/sifter3/workflows/Python%20package/badge.svg)
66
[![Documentation Status](https://readthedocs.org/projects/sifter3/badge/?version=latest)](https://sifter3.readthedocs.io/en/latest/?badge=latest)
7-
[![CodeFactor](https://www.codefactor.io/repository/github/manfred-kaiser/sifter3/badge)](https://www.codefactor.io/repository/github/manfred-kaiser/sifter3)
8-
[![Github version](https://img.shields.io/github/v/release/manfred-kaiser/sifter3?label=github&logo=github)](https://github.com/manfred-kaiser/sifter3/releases)
7+
[![CodeFactor](https://www.codefactor.io/repository/github/python-sifter/sifter3/badge)](https://www.codefactor.io/repository/github/python-sifter/sifter3)
8+
[![Github version](https://img.shields.io/github/v/release/python-sifter/sifter3?label=github&logo=github)](https://github.com/python-sifter/sifter3/releases)
99
[![PyPI version](https://img.shields.io/pypi/v/sifter3.svg?logo=pypi&logoColor=FFE873)](https://pypi.org/project/sifter3/)
1010
[![Supported Python versions](https://img.shields.io/pypi/pyversions/sifter3.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/sifter3/)
1111
[![PyPI downloads](https://pepy.tech/badge/sifter3/month)](https://pepy.tech/project/sifter3/month)
12-
[![GitHub](https://img.shields.io/github/license/manfred-kaiser/sifter3.svg)](LICENSE)
12+
[![GitHub](https://img.shields.io/github/license/python-sifter/sifter3.svg)](LICENSE)
1313

1414

1515

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="sifter3",
13-
version="0.2.6",
13+
version="0.2.7",
1414
author="Manfred Kaiser, Gary Peck",
1515
1616
url="https://sifter3.readthedocs.io/en/latest/",
@@ -20,8 +20,8 @@
2020
long_description_content_type='text/markdown',
2121
keywords="sieve email filter parser",
2222
project_urls={
23-
'Source': 'https://github.com/manfred-kaiser/sifter3',
24-
'Tracker': 'https://github.com/manfred-kaiser/sifter3/issues',
23+
'Source': 'https://github.com/python-sifter/sifter3',
24+
'Tracker': 'https://github.com/python-sifter/sifter3/issues',
2525
},
2626
python_requires='>= 3.6',
2727
install_requires=[

0 commit comments

Comments
 (0)