Skip to content

Commit

Permalink
v0.0.6 🧮
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato authored Dec 2, 2021
1 parent 6c68c7d commit 187c51a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.6] - 2021-12-02 :abacus:
- Adds Python 3.10 to the build matrix and classifiers
- Upgrades dependencies

## [0.0.5] - 2021-03-13 :octocat:
- Completely migrates to GitHub Workflows
- Adds a changelog
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiofiles==0.6.0
Pillow==8.3.2
pytest==5.1.2
pytest-asyncio==0.10.0
pytest-cov==2.7.1
flake8==3.8.4
aiofiles>=0.6.0
Pillow>=8.3.2
pytest
pytest-asyncio
pytest-cov
flake8
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name="gallerist",
version="0.0.5",
version="0.0.6",
description="Classes and methods to handle pictures for the web",
long_description=readme(),
long_description_content_type="text/markdown",
Expand All @@ -20,6 +20,7 @@ def readme():
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
url="https://github.com/Neoteroi/Gallerist",
Expand All @@ -28,7 +29,7 @@ def readme():
keywords="pictures images web",
license="MIT",
packages=["gallerist"],
install_requires=["aiofiles==0.4.0", "Pillow==8.3.2"],
install_requires=["aiofiles>=0.4.0", "Pillow>=8.3.2"],
include_package_data=True,
zip_safe=False,
)

0 comments on commit 187c51a

Please sign in to comment.