Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed bug with importlib_metadata #80

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/package-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
sh .github/update_version.sh "${{ needs.Determine-Build-Type.outputs.package_ver }}"
echo $(sh .github/get_version.sh)
- name: Build a Wheel Package
run: python -m build --wheel .
run: python -m build --wheel --sdist .
- name: Check if the package can be uploaded to PyPI
run: python -m twine check dist/*
- name: Save the artifacts
Expand Down
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
MIT License

Copyright (c) 2019-2024 Michał Czuba, Piotr Bródka, Mateusz Nurek, Damian
Serwata, Yu-Xuan Qi, Mingshan Jia, Katarzyna Musial, Radosław Michalski, Damian
Dąbrowski
Copyright (c) 2019- Michał Czuba, Piotr Bródka
Copyright (c) 2023 Damian Dąbrowski, Damian Serwata, Radosław Michalski
Copyright (c) 2023- Mateusz Nurek, Yu-Xuan Qi, Mingshan Jia, Katarzyna Musial

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
![Tests](https://github.com/anty-filidor/network_diffusion/actions/workflows/tests.yml/badge.svg)
![Builds](https://github.com/anty-filidor/network_diffusion/actions/workflows/package-build.yml/badge.svg)
[![Docs](https://readthedocs.org/projects/network-diffusion/badge/?version=latest)](https://network-diffusion.readthedocs.io/en/latest)
[![codecov](https://codecov.io/gh/anty-filidor/network_diffusion/branch/package-simplification/graph/badge.svg?token=LF52GAD73F)](https://codecov.io/gh/anty-filidor/network_diffusion)
[![Codecov](https://codecov.io/gh/anty-filidor/network_diffusion/branch/package-simplification/graph/badge.svg?token=LF52GAD73F)](https://codecov.io/gh/anty-filidor/network_diffusion)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fanty-filidor%2Fnetwork_diffusion.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fanty-filidor%2Fnetwork_diffusion?ref=badge_shield)

This Python library provides a versatile toolkit for simulating diffusion
Expand Down
3 changes: 2 additions & 1 deletion env/pip_dev.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
build~=1.2.1
coverage~=7.5.3
docutils==0.20
importlib_metadata~=7.2.1
m2r~=0.3.1
pre-commit~=3.7.1
pytest~=8.2.2
Sphinx~=7.3.7
sphinx-book-theme~=1.1.3
sphinx-pyproject~=0.3.0
twine~=5.1.0
twine~=5.0.0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools~=69.5.1", "setuptools-scm"]
requires = ["setuptools~=69.5.1"]
build-backend = "setuptools.build_meta"

[project]
Expand Down
Loading