Skip to content

Commit

Permalink
add python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
metacollin committed Aug 14, 2024
1 parent 801acc2 commit 364bfec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read(fname):
'description': "Utilities to handle Gerber (RS-274X) files.",
'license': "Apache",
'keywords': "pcb gerber tools",
'url': "http://github.com/curtacircuitos/pcb-tools",
'url': "https://github.com/MacroFab/pcb-tools",
'packages': ['gerber', 'gerber.render'],
'long_description': read('README.md'),
'classifiers': [
Expand All @@ -40,7 +40,7 @@ def read(fname):
}

SETUPTOOLS_METADATA = {
'install_requires': ['cairocffi==0.6'],
'install_requires': ['cairocffi==1.2.0'],
'entry_points': {
'console_scripts': [
'gerber-render = gerber.__main__:main',
Expand Down

0 comments on commit 364bfec

Please sign in to comment.