Skip to content

Commit e169492

Browse files
committed
calver
1 parent f0b27cf commit e169492

File tree

4 files changed

+20
-50
lines changed

4 files changed

+20
-50
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ playground.py
44
test.gif
55
test-*.gif
66
geckodriver.log
7+
example.gif
78

89
# Byte-compiled / optimized / DLL files
910
__pycache__/

CHANGELOG.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<h3 align="center">
2-
<img alt="gif" src="https://raw.githubusercontent.com/maxhumber/gif/master/images/logo.png" width="250px">
3-
</h3>
4-
<p align="center">
5-
<a href="https://github.com/maxhumber/gif"><img alt="GitHub" src="https://img.shields.io/github/license/maxhumber/gif"></a>
6-
<a href="https://pypi.python.org/pypi/gif"><img alt="PyPI" src="https://img.shields.io/pypi/v/gif.svg"></a>
1+
<div align="center">
2+
<img alt="gif" src="https://raw.githubusercontent.com/maxhumber/gif/master/images/logo.png" height="200px">
3+
</div>
4+
<div align="center">
5+
<a href="https://calver.org/"><img src="https://img.shields.io/badge/calver-YY.MM.MICRO-22bfda.svg"></a>
6+
<a href="https://pypi.org/project/gif/"><img src="https://img.shields.io/pypi/v/gif.svg"></a>
77
<a href="https://pepy.tech/project/gif"><img alt="Downloads" src="https://pepy.tech/badge/gif/month"></a>
8-
</p>
9-
8+
</div>
109

1110
### About
1211

@@ -56,13 +55,13 @@ gif.save(frames, 'example.gif', duration=50)
5655

5756
### Examples
5857

59-
| [![arrival.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/arrival.gif)](https://github.com/maxhumber/gif/blob/master/examples/arrival.py) | [![hop.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/hop.gif)](https://github.com/maxhumber/gif/blob/master/examples/hop.py) | [![phone.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/phone.gif)](https://github.com/maxhumber/gif/blob/master/examples/phone.py) |
58+
| [![arrival.gif](images/arrival.gif)](examples/arrival.py) | [![hop.gif](images/hop.gif)](examples/hop.py) | [![phone.gif](images/phone.gif)](examples/phone.py) |
6059
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
61-
| [![seinfeld.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/seinfeld.gif)](https://github.com/maxhumber/gif/blob/master/examples/seinfeld.py) | [![spiral.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/spiral.gif)](https://github.com/maxhumber/gif/blob/master/examples/spiral.py) | [![love.gif](https://raw.githubusercontent.com/maxhumber/gif/master/images/love.gif)](https://github.com/maxhumber/gif/blob/master/examples/love.py) |
60+
| [![seinfeld.gif](images/seinfeld.gif)](examples/seinfeld.py) | [![spiral.gif](images/spiral.gif)](examples/spiral.py) | [![love.gif](images/love.gif)](love.py) |
6261

6362

64-
### ⚠️ Warning
63+
### Warning
6564

66-
Altair and Plotly are no longer supported in `4.0`+
65+
Altair and Plotly are no longer supported in `22.5.0`+
6766

6867
Please use `pip install gif==3.0.0` if you still need to interface with these libraries

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@
55

66
setup(
77
name="gif",
8-
version="4.0-rc1",
8+
version="22.5.0",
99
description="The matplotlib Animation Extension",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
12+
url="https://github.com/maxhumber/gif",
13+
author="Max Humber",
14+
author_email="[email protected]",
15+
license="MIT",
1216
classifiers=[
1317
"Development Status :: 5 - Production/Stable",
1418
"Topic :: Multimedia :: Graphics",
@@ -21,11 +25,9 @@
2125
"pillow",
2226
"matplotlib",
2327
],
24-
url="https://github.com/maxhumber/gif",
25-
author="Max Humber",
26-
author_email="[email protected]",
27-
license="MIT",
2828
py_modules=["gif"],
29+
python_requires=">=3.9",
30+
setup_requires=["setuptools>=62.1.0"],
2931
install_requires=["matplotlib>=3.5.2", "Pillow>=9.1.0"],
3032
extras_require={
3133
"test": [
@@ -35,7 +37,5 @@
3537
"pip>=22.1",
3638
"pytest>=7.1.2",
3739
],
38-
},
39-
python_requires=">=3.9",
40-
setup_requires=["setuptools>=62.1.0"],
40+
}
4141
)

0 commit comments

Comments
 (0)