Skip to content

Commit b600af7

Browse files
committed
ci: fix typo
1 parent cf541b4 commit b600af7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: bandit --ini=setup.cfg -r PyFunceble
8080

8181
test:
82-
needs: [lint, deps_safety_check, sec_check]
82+
needs: [lint,sec_check]
8383
name: "[${{ matrix.os }}-py${{ matrix.python_version }}] Test PyFunceble"
8484

8585
runs-on: "${{ matrix.os }}"

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/master/version.yaml"
150+
"https://raw.githubusercontent.com/funilrys/PyFunceble/dev/version.yaml"
151151
)
152152

153153
HASHES_FILENAME: str = "hashes_tracker.json"

setup.py

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

270270
if __name__ == "__main__":
271271
setuptools.setup(
272-
name="PyFunceble",
272+
name="PyFunceble-dev",
273273
version=get_version(),
274274
python_requires=">=3.10, <4",
275275
install_requires=get_requirements(mode="standard"),
@@ -294,7 +294,7 @@ def get_console_scripts(): # pragma: no cover
294294
project_urls={
295295
"Documentation": "https://docs.pyfunceble.com",
296296
"Funding": "https://github.com/sponsors/funilrys",
297-
"Source": "https://github.com/funilrys/PyFunceble/tree/master",
297+
"Source": "https://github.com/funilrys/PyFunceble/tree/dev",
298298
"Tracker": "https://github.com/funilrys/PyFunceble/issues",
299299
},
300300
platforms=["any"],
@@ -311,7 +311,7 @@ def get_console_scripts(): # pragma: no cover
311311
classifiers=[
312312
"Environment :: Console",
313313
"Topic :: Internet",
314-
"Development Status :: 5 - Production/Stable",
314+
"Development Status :: 4 - Beta",
315315
"Intended Audience :: Developers",
316316
"Programming Language :: Python",
317317
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)