fotolab 0.16.3__tar.gz → 0.16.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fotolab-0.16.3 → fotolab-0.16.4}/CHANGELOG.md +7 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/CONTRIBUTING.md +2 -3
- {fotolab-0.16.3 → fotolab-0.16.4}/PKG-INFO +1 -1
- {fotolab-0.16.3 → fotolab-0.16.4}/Pipfile +0 -1
- {fotolab-0.16.3 → fotolab-0.16.4}/Pipfile.lock +49 -34
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/__init__.py +1 -1
- {fotolab-0.16.3 → fotolab-0.16.4}/noxfile.py +8 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/.coveragerc +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/.gitignore +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/.pre-commit-config.yaml +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/.python-version +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/LICENSE.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/README.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/Makefile +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/make.bat +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/CHANGELOG.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/CONTRIBUTING.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/LICENSE.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/README.md +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/_static/logo.jpg +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/conf.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/docs/source/index.rst +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/__main__.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/animate.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/auto.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/border.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/cli.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/contrast.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/env.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/info.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/montage.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/resize.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/rotate.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/sharpen.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/fotolab/watermark.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/pyproject.toml +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/tests/__init__.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/tests/conftest.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/tests/test_env.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/tests/test_help_flag.py +0 -0
- {fotolab-0.16.3 → fotolab-0.16.4}/tests/test_quiet_flag.py +0 -0
@@ -7,6 +7,13 @@ and this project adheres to [0-based versioning](https://0ver.org/).
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## v0.16.4 (2024-06-09)
|
11
|
+
|
12
|
+
- Add `deps` session to `nox`
|
13
|
+
- Bump deps
|
14
|
+
- Remove `tox` dep
|
15
|
+
- Update `nox` session output in contributing doc
|
16
|
+
|
10
17
|
## v0.16.3 (2024-06-02)
|
11
18
|
|
12
19
|
- Bump deps
|
@@ -49,6 +49,7 @@ nox -l
|
|
49
49
|
|
50
50
|
```console
|
51
51
|
...
|
52
|
+
* deps -> Update pre-commit hooks and deps.
|
52
53
|
* lint -> Runs pre-commit linter.
|
53
54
|
* test-3.8 -> Runs test.
|
54
55
|
* test-3.9 -> Runs test.
|
@@ -56,9 +57,7 @@ nox -l
|
|
56
57
|
* test-3.11 -> Runs test.
|
57
58
|
* test-3.12 -> Runs test.
|
58
59
|
* cov -> Runs test coverage.
|
59
|
-
* doc ->
|
60
|
-
|
61
|
-
sessions marked with * are selected, sessions marked with - are skipped.
|
60
|
+
* doc -> Build doc with sphinx.
|
62
61
|
```
|
63
62
|
|
64
63
|
## Create a Pull Request
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"_meta": {
|
3
3
|
"hash": {
|
4
|
-
"sha256": "
|
4
|
+
"sha256": "4f784fe9160dddc3047490325741ec793ad3af059b402e2a6f1e214802f26902"
|
5
5
|
},
|
6
6
|
"pipfile-spec": 6,
|
7
7
|
"requires": {
|
@@ -126,13 +126,21 @@
|
|
126
126
|
"markers": "python_version >= '3.8'",
|
127
127
|
"version": "==2.15.0"
|
128
128
|
},
|
129
|
+
"cachetools": {
|
130
|
+
"hashes": [
|
131
|
+
"sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945",
|
132
|
+
"sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"
|
133
|
+
],
|
134
|
+
"markers": "python_version >= '3.7'",
|
135
|
+
"version": "==5.3.3"
|
136
|
+
},
|
129
137
|
"certifi": {
|
130
138
|
"hashes": [
|
131
|
-
"sha256:
|
132
|
-
"sha256:
|
139
|
+
"sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516",
|
140
|
+
"sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"
|
133
141
|
],
|
134
142
|
"markers": "python_version >= '3.6'",
|
135
|
-
"version": "==2024.
|
143
|
+
"version": "==2024.6.2"
|
136
144
|
},
|
137
145
|
"cfgv": {
|
138
146
|
"hashes": [
|
@@ -142,6 +150,14 @@
|
|
142
150
|
"markers": "python_version >= '3.8'",
|
143
151
|
"version": "==3.4.0"
|
144
152
|
},
|
153
|
+
"chardet": {
|
154
|
+
"hashes": [
|
155
|
+
"sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7",
|
156
|
+
"sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"
|
157
|
+
],
|
158
|
+
"markers": "python_version >= '3.7'",
|
159
|
+
"version": "==5.2.0"
|
160
|
+
},
|
145
161
|
"charset-normalizer": {
|
146
162
|
"hashes": [
|
147
163
|
"sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027",
|
@@ -238,6 +254,14 @@
|
|
238
254
|
"markers": "python_full_version >= '3.7.0'",
|
239
255
|
"version": "==3.3.2"
|
240
256
|
},
|
257
|
+
"colorama": {
|
258
|
+
"hashes": [
|
259
|
+
"sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44",
|
260
|
+
"sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"
|
261
|
+
],
|
262
|
+
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
|
263
|
+
"version": "==0.4.6"
|
264
|
+
},
|
241
265
|
"colorlog": {
|
242
266
|
"hashes": [
|
243
267
|
"sha256:3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44",
|
@@ -561,11 +585,11 @@
|
|
561
585
|
},
|
562
586
|
"nodeenv": {
|
563
587
|
"hashes": [
|
564
|
-
"sha256:
|
565
|
-
"sha256:
|
588
|
+
"sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f",
|
589
|
+
"sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"
|
566
590
|
],
|
567
591
|
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
|
568
|
-
"version": "==1.9.
|
592
|
+
"version": "==1.9.1"
|
569
593
|
},
|
570
594
|
"nox": {
|
571
595
|
"hashes": [
|
@@ -685,14 +709,6 @@
|
|
685
709
|
"markers": "python_version >= '3.8'",
|
686
710
|
"version": "==3.5.0"
|
687
711
|
},
|
688
|
-
"py": {
|
689
|
-
"hashes": [
|
690
|
-
"sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719",
|
691
|
-
"sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"
|
692
|
-
],
|
693
|
-
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'",
|
694
|
-
"version": "==1.11.0"
|
695
|
-
},
|
696
712
|
"pycodestyle": {
|
697
713
|
"hashes": [
|
698
714
|
"sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f",
|
@@ -725,14 +741,22 @@
|
|
725
741
|
"markers": "python_version >= '3.8'",
|
726
742
|
"version": "==2.18.0"
|
727
743
|
},
|
744
|
+
"pyproject-api": {
|
745
|
+
"hashes": [
|
746
|
+
"sha256:1817dc018adc0d1ff9ca1ed8c60e1623d5aaca40814b953af14a9cf9a5cae538",
|
747
|
+
"sha256:4c0116d60476b0786c88692cf4e325a9814965e2469c5998b830bba16b183675"
|
748
|
+
],
|
749
|
+
"markers": "python_version >= '3.8'",
|
750
|
+
"version": "==1.6.1"
|
751
|
+
},
|
728
752
|
"pytest": {
|
729
753
|
"hashes": [
|
730
|
-
"sha256:
|
731
|
-
"sha256:
|
754
|
+
"sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343",
|
755
|
+
"sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"
|
732
756
|
],
|
733
757
|
"index": "pypi",
|
734
758
|
"markers": "python_version >= '3.8'",
|
735
|
-
"version": "==8.2.
|
759
|
+
"version": "==8.2.2"
|
736
760
|
},
|
737
761
|
"pytest-cov": {
|
738
762
|
"hashes": [
|
@@ -841,14 +865,6 @@
|
|
841
865
|
"index": "pypi",
|
842
866
|
"version": "==1.3"
|
843
867
|
},
|
844
|
-
"six": {
|
845
|
-
"hashes": [
|
846
|
-
"sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
|
847
|
-
"sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
|
848
|
-
],
|
849
|
-
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
|
850
|
-
"version": "==1.16.0"
|
851
|
-
},
|
852
868
|
"snowballstemmer": {
|
853
869
|
"hashes": [
|
854
870
|
"sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1",
|
@@ -942,12 +958,11 @@
|
|
942
958
|
},
|
943
959
|
"tox": {
|
944
960
|
"hashes": [
|
945
|
-
"sha256:
|
946
|
-
"sha256:
|
961
|
+
"sha256:53a092527d65e873e39213ebd4bd027a64623320b6b0326136384213f95b7076",
|
962
|
+
"sha256:f00a5dc4222b358e69694e47e3da0227ac41253509bca9f45aa8f012053e8d9d"
|
947
963
|
],
|
948
|
-
"
|
949
|
-
"
|
950
|
-
"version": "==3.28.0"
|
964
|
+
"markers": "python_version >= '3.8'",
|
965
|
+
"version": "==4.15.1"
|
951
966
|
},
|
952
967
|
"tox-pyenv": {
|
953
968
|
"hashes": [
|
@@ -975,11 +990,11 @@
|
|
975
990
|
},
|
976
991
|
"zipp": {
|
977
992
|
"hashes": [
|
978
|
-
"sha256:
|
979
|
-
"sha256:
|
993
|
+
"sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19",
|
994
|
+
"sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"
|
980
995
|
],
|
981
996
|
"markers": "python_version >= '3.8'",
|
982
|
-
"version": "==3.19.
|
997
|
+
"version": "==3.19.2"
|
983
998
|
}
|
984
999
|
}
|
985
1000
|
}
|
@@ -17,6 +17,14 @@
|
|
17
17
|
import nox
|
18
18
|
|
19
19
|
|
20
|
+
@nox.session()
|
21
|
+
def deps(session: nox.Session) -> None:
|
22
|
+
"""Update pre-commit hooks and deps."""
|
23
|
+
session.install("pre-commit")
|
24
|
+
session.run("pre-commit", "autoupdate", *session.posargs)
|
25
|
+
session.run("pipenv", "update", external=True)
|
26
|
+
|
27
|
+
|
20
28
|
@nox.session()
|
21
29
|
def lint(session: nox.Session) -> None:
|
22
30
|
"""Runs pre-commit linter."""
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|