Commit 6b80fbe 1 parent 624d5b1 commit 6b80fbe Copy full SHA for 6b80fbe
File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Note: My setup uses the username/password stored in the ~/.pypirc file
3
+ #
4
+
1
5
test :
2
6
./tests/test-rshell.sh
3
7
4
8
# Creates the source distribution tarball
5
9
sdist :
6
10
python3 setup.py sdist
7
11
8
- # Registers this package on the pypi test server
9
- register-test :
10
- python3 setup.py register -r pypitest
11
-
12
12
# Creates the distribution tarball and uploads to the pypi test server
13
13
upload-test :
14
14
rm -rf dist/*
15
15
python3 setup.py sdist
16
- twine upload -u dhylands --repository-url https://test.pypi.org/legacy/ dist/*
16
+ twine upload -r testpypi dist/*
17
17
18
18
# Creates the distribution tarball and uploads to the pypi live server
19
19
upload :
20
- # python3 setup.py sdist upload -r pypi
21
20
rm -rf dist/*
22
21
python3 setup.py sdist
23
- twine upload -u dhylands dist/*
22
+ twine upload -r pypi dist/*
24
23
25
24
# Registers this package on the pypi live server
26
- register :
27
- python3 setup.py register -r pypi
25
+ requirements :
26
+ pip install -r requirements.txt
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ def is_micropython_usb_device(port):
245
245
if usb_id .startswith ('usb vid:pid=2e8a:0005' ):
246
246
USB_BUFFER_SIZE = RPI_PICO_USB_BUFFER_SIZE
247
247
return True
248
- # Check for XIAO ESP32C3
248
+ # Check for XIAO ESP32S3
249
249
if usb_id .startswith ('usb vid:pid=303a:4001' ):
250
250
USB_BUFFER_SIZE = 256
251
251
return True
You can’t perform that action at this time.
0 commit comments