Skip to content

Commit fab5db6

Browse files
committed
Bump version to v4.2.27.
1 parent 46e56d6 commit fab5db6

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/workflows/stable.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
pip install safety
7474
7575
- name: Check the safety of our dependencies.
76-
run: safety check -i 51668 -i 62044 -i 67599
76+
run: safety check -i 51668 -i 62044 -i 67599 -i 70612
7777

7878
test:
7979
needs: [lint, deps_safety_check]
@@ -85,6 +85,7 @@ jobs:
8585
fail-fast: false
8686
matrix:
8787
python_version:
88+
- "3.8"
8889
- "3.9"
8990
- "3.10"
9091
- "3.11"
@@ -122,6 +123,7 @@ jobs:
122123
COVERALLS_PARALLEL: true
123124

124125
coveralls:
126+
continue-on-error: true
125127
needs: test
126128
name: Finish Coveralls
127129

PyFunceble/cli/scripts/production.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def update_setup_py(self) -> "ProductionPrep":
394394
]
395395
elif self.branch == "master":
396396
regexes = [
397-
(r'name=".*"', 'name="PyFunceble-dev"'),
397+
(r'name=".*"', 'name="PyFunceble"'),
398398
(
399399
r'"Development\sStatus\s::.*"',
400400
'"Development Status :: 5 - Production/Stable"',

PyFunceble/cli/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
ERROR: str = f"{colorama.Fore.RED}ERROR"
148148

149149
VERSION_DUMP_LINK: str = (
150-
"https://raw.githubusercontent.com/funilrys/PyFunceble/dev/version.yaml"
150+
"https://raw.githubusercontent.com/funilrys/PyFunceble/master/version.yaml"
151151
)
152152

153153
HASHES_FILENAME: str = "hashes_tracker.json"

PyFunceble/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
from PyFunceble.storage_facility import get_config_directory
6262

6363
PROJECT_NAME: str = "PyFunceble"
64-
PROJECT_VERSION: str = "4.2.27.dev (Blue Duckling: Ixora)"
64+
PROJECT_VERSION: str = "4.2.27. (Blue Duckling: Tulip)"
6565

6666
DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
6767
DISTRIBUTED_DIR_STRUCTURE_FILENAME: str = "dir_structure_production.json"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def get_console_scripts(): # pragma: no cover
250250

251251
if __name__ == "__main__":
252252
setuptools.setup(
253-
name="PyFunceble-dev",
253+
name="PyFunceble",
254254
version=get_version(),
255255
python_requires=">=3.8, <4",
256256
install_requires=get_requirements(mode="standard"),
@@ -271,7 +271,7 @@ def get_console_scripts(): # pragma: no cover
271271
project_urls={
272272
"Documentation": "https://docs.pyfunceble.com",
273273
"Funding": "https://github.com/sponsors/funilrys",
274-
"Source": "https://github.com/funilrys/PyFunceble/tree/dev",
274+
"Source": "https://github.com/funilrys/PyFunceble/tree/master",
275275
"Tracker": "https://github.com/funilrys/PyFunceble/issues",
276276
},
277277
platforms=["any"],
@@ -288,7 +288,7 @@ def get_console_scripts(): # pragma: no cover
288288
classifiers=[
289289
"Environment :: Console",
290290
"Topic :: Internet",
291-
"Development Status :: 4 - Beta",
291+
"Development Status :: 5 - Production/Stable",
292292
"Intended Audience :: Developers",
293293
"Programming Language :: Python",
294294
"Programming Language :: Python :: 3",

version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: '4.2.27.dev (Blue Duckling: Ixora)'
1+
current_version: '4.2.27. (Blue Duckling: Tulip)'
22
deprecated:
33
- 3.0.21
44
- 3.1.20

0 commit comments

Comments
 (0)