Skip to content

Commit 5757510

Browse files
authored
Merge pull request #2387 from jakub-pietrzak/bump-glob-10.5.0
Bump glob from 10.4.5 to 10.5.0
2 parents cbc4105 + 29d47db commit 5757510

9 files changed

Lines changed: 11 additions & 20 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ ubuntu, windows, macos ]
20-
python-version: [3.8, '3.10', 3.11]
20+
python-version: ['3.10', 3.11]
2121
include:
22-
- python-version: 3.8
22+
- python-version: '3.10'
2323
node-version: 16
24-
- python-version: '3.10'
24+
- python-version: 3.11
2525
node-version: 18
2626
- python-version: 3.11
2727
node-version: 20

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"dependencies": {
5252
"config-chain": "^1.1.13",
5353
"editorconfig": "^1.0.4",
54-
"glob": "^10.4.2",
54+
"glob": "^10.5.0",
5555
"js-cookie": "^3.0.5",
5656
"nopt": "^7.2.1"
5757
},

python/cssbeautifier/_main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ def beautify_file(file_name, opts=None):
5353

5454
def usage(stream=sys.stdout):
5555
print(
56-
"cssbeautifier.py@"
57-
+ __version__
58-
+ """
56+
"cssbeautifier.py@" + __version__ + """
5957
6058
CSS beautifier (https://beautifier.io/)
6159

python/cssbeautifier/css/beautifier.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ def beautify_file(file_name, opts=default_options()):
6868

6969
def usage(stream=sys.stdout):
7070
print(
71-
"cssbeautifier.py@"
72-
+ __version__
73-
+ """
71+
"cssbeautifier.py@" + __version__ + """
7472
7573
CSS beautifier (https://beautifier.io/)
7674

python/jsbeautifier/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ def beautify_file(file_name, opts=default_options()):
8888

8989
def usage(stream=sys.stdout):
9090
print(
91-
"jsbeautifier.py@"
92-
+ __version__
93-
+ """
91+
"jsbeautifier.py@" + __version__ + """
9492
9593
Javascript beautifier (https://beautifier.io/)
9694

python/jsbeautifier/javascript/tokenizer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from ..core.pattern import Pattern
3333
from ..core.templatablepattern import TemplatablePattern
3434

35-
3635
__all__ = ["TOKEN", "Tokenizer", "TokenTypes"]
3736

3837

python/setup-css.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from setuptools import setup
44
from cssbeautifier.__version__ import __version__
55

6-
76
setup(
87
name="cssbeautifier",
98
version=__version__,

python/setup-js.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from setuptools import setup
44
from jsbeautifier.__version__ import __version__
55

6-
76
setup(
87
name="jsbeautifier",
98
version=__version__,

0 commit comments

Comments
 (0)