Skip to content

Commit 2b20aa0

Browse files
authored
Merge pull request #40 from UniversalPython/main
fix: files not found issue
2 parents f573df5 + 29378d7 commit 2b20aa0

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
name: Deploy Docs to GitHub Pages
1+
name: Trigger Docs Deployment to GitHub Pages
22
on:
33
push:
44
branches: [ main ] # Trigger on main branch updates
5-
paths: [ 'web/**' ] # Only if files in 'web/' change
65

76
jobs:
87
deploy:
@@ -13,6 +12,5 @@ jobs:
1312
uses: JamesIves/github-pages-deploy-action@v4
1413
with:
1514
branch: main # Branch in UniversalPython.github.io repo
16-
folder: web # Folder to deploy
1715
repository: UniversalPython/UniversalPython.github.io
1816
token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Install UniversalPython with pip:
4444
pip install universalpython
4545
```
4646

47-
See more details about the package on [PyPi](https://pypi.org/project/universalpython/).
47+
See more details about the package on [PyPI](https://pypi.org/project/universalpython/).
4848

4949
### Online Playground
5050

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "universalpython"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
authors = [
99
{name = "Saad Bazaz", email = "saadbazaz@hotmail.com"},
1010
]
11-
description = "Universal Python - Write Python in your native language"
11+
description = "UniversalPython - Write Python in your native language"
1212
readme = "README.md"
1313
requires-python = ">=3.7"
14-
license = {text = "MIT"}
1514
classifiers = [
1615
"Development Status :: 4 - Beta",
1716
"Intended Audience :: Developers",
@@ -30,7 +29,7 @@ dependencies = [
3029
]
3130

3231
[project.urls]
33-
Homepage = "https://github.com/UniversalPython/UniversalPython"
32+
Homepage = "https://universalpython.github.io"
3433
Repository = "https://github.com/UniversalPython/UniversalPython"
3534
Issues = "https://github.com/UniversalPython/UniversalPython/issues"
3635

@@ -40,7 +39,7 @@ Issues = "https://github.com/UniversalPython/UniversalPython/issues"
4039
packages = ["universalpython"]
4140

4241
[tool.setuptools.package-data]
43-
universalpython = ["samples/*/*", "languages/*/*.yaml"]
42+
universalpython = ["languages/**/*.yaml", "modes/*.py"]
4443

4544
[project.scripts]
4645
universalpython = "universalpython.universalpython:main"

0 commit comments

Comments
 (0)