Skip to content

Commit 78c13d1

Browse files
committed
Frameworks now
1 parent 708da58 commit 78c13d1

11,159 files changed

Lines changed: 3608900 additions & 130 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 5 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616

17-
- name: Remove README
17+
- name: Remove Unnecessary Files
1818
run: |
1919
rm -f README.md
2020
rm -rf .github
@@ -43,101 +43,28 @@ jobs:
4343
uses: actions/checkout@v3
4444
with:
4545
ref: latest-release
46-
47-
- name: Setup Python
48-
uses: actions/setup-python@v4
49-
with:
50-
python-version: '3.13'
51-
52-
- name: Create Virtual Environment
53-
run: |
54-
python -m venv py313-mac
55-
rm py313-mac/.gitignore
5646

5747
- name: Install Dependencies
5848
run: |
59-
source py313-mac/bin/activate
60-
pip install -r requirements.txt
61-
49+
py313-mac/bin/python3 -m pip install -r requirements.txt
50+
6251
- name: Upload Artifact
6352
uses: actions/upload-artifact@v4
6453
with:
6554
name: py313-mac
6655
path: py313-mac/
6756

68-
build-windows:
69-
runs-on: windows-latest
70-
needs: [branch-setup]
71-
72-
steps:
73-
- name: Checkout
74-
uses: actions/checkout@v3
75-
with:
76-
ref: latest-release
77-
78-
- name: Setup Python
79-
uses: actions/setup-python@v4
80-
with:
81-
python-version: '3.13'
82-
83-
- name: Create Virtual Environment
84-
run: |
85-
python -m venv py313-win
86-
del py313-win\.gitignore
87-
88-
- name: Install Dependencies
89-
run: |
90-
.\py313-win\Scripts\activate
91-
pip install -r requirements.txt
92-
93-
- name: Upload Artifact
94-
uses: actions/upload-artifact@v4
95-
with:
96-
name: py313-win
97-
path: py313-win/
98-
99-
build-linux:
100-
runs-on: ubuntu-latest
101-
needs: [branch-setup]
102-
103-
steps:
104-
- name: Checkout
105-
uses: actions/checkout@v3
106-
with:
107-
ref: latest-release
108-
109-
- name: Setup Python
110-
uses: actions/setup-python@v4
111-
with:
112-
python-version: '3.13'
113-
114-
- name: Create Virtual Environment
115-
run: |
116-
python -m venv py313-linux
117-
rm py313-linux/.gitignore
118-
119-
- name: Install Dependencies
120-
run: |
121-
source py313-linux/bin/activate
122-
pip install -r requirements.txt
123-
124-
- name: Upload Artifact
125-
uses: actions/upload-artifact@v4
126-
with:
127-
name: py313-linux
128-
path: py313-linux/
129-
13057
release:
13158
runs-on: ubuntu-latest
132-
needs: [branch-setup, build-mac, build-windows, build-linux]
59+
needs: [branch-setup, build-mac]
13360

13461
steps:
13562
- name: Checkout
13663
uses: actions/checkout@v3
13764
with:
13865
ref: latest-release
13966

140-
- name: Remove README
67+
- name: Remove Requirements File
14168
run: |
14269
rm -f requirements.txt
14370

mac/fix-mac-venv.sh

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)